SqlMethods.DateDiffMicrosecond メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した 2 つの日付間のマイクロ秒の境界数をカウントします。
オーバーロード
DateDiffMicrosecond(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>) |
Null 許容型の 2 つの日付間のマイクロ秒の境界数をカウントします。 |
DateDiffMicrosecond(Nullable<DateTime>, Nullable<DateTime>) |
Null 許容型の 2 つの日付間のマイクロ秒の境界数をカウントします。 |
DateDiffMicrosecond(DateTime, DateTime) |
Null 非許容型の 2 つの日付間のマイクロ秒の境界数をカウントします。 |
DateDiffMicrosecond(DateTimeOffset, DateTimeOffset) |
Null 非許容型の 2 つの日付間のマイクロ秒の境界数をカウントします。 |
注釈
を使用millisecond
して交差する時間境界の種類を指定するSQL ServerDATEDIFF
関数に対応します。 このSQL Server関数の詳細については、「DATEDIFF」を参照してください。
DateDiffMicrosecond(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Null 許容型の 2 つの日付間のマイクロ秒の境界数をカウントします。
public:
static Nullable<int> DateDiffMicrosecond(Nullable<DateTimeOffset> startDate, Nullable<DateTimeOffset> endDate);
public static int? DateDiffMicrosecond (DateTimeOffset? startDate, DateTimeOffset? endDate);
static member DateDiffMicrosecond : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
Public Shared Function DateDiffMicrosecond (startDate As Nullable(Of DateTimeOffset), endDate As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)
パラメーター
- startDate
- Nullable<DateTimeOffset>
期間の開始日。
- endDate
- Nullable<DateTimeOffset>
期間の終了日。
戻り値
両方のパラメーターが null
でない場合、指定した 2 つの日付間のマイクロ秒の境界数を返します。 いずれかのパラメーターまたは両方のパラメーターが null
の場合は、null
値を返します。
注釈
を使用microsecond
して交差する時間境界の種類を指定するSQL ServerDATEDIFF
関数に対応します。 このSQL Server関数の詳細については、「DATEDIFF」を参照してください。
適用対象
DateDiffMicrosecond(Nullable<DateTime>, Nullable<DateTime>)
Null 許容型の 2 つの日付間のマイクロ秒の境界数をカウントします。
public:
static Nullable<int> DateDiffMicrosecond(Nullable<DateTime> startDate, Nullable<DateTime> endDate);
public static int? DateDiffMicrosecond (DateTime? startDate, DateTime? endDate);
static member DateDiffMicrosecond : Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
Public Shared Function DateDiffMicrosecond (startDate As Nullable(Of DateTime), endDate As Nullable(Of DateTime)) As Nullable(Of Integer)
パラメーター
戻り値
両方のパラメーターが null
でない場合、指定した 2 つの日付間のマイクロ秒の境界数を返します。 いずれかのパラメーターまたは両方のパラメーターが null
の場合は、null
値を返します。
注釈
を使用microsecond
して交差する時間境界の種類を指定するSQL ServerDATEDIFF
関数に対応します。 このSQL Server関数の詳細については、「DATEDIFF」を参照してください。
適用対象
DateDiffMicrosecond(DateTime, DateTime)
Null 非許容型の 2 つの日付間のマイクロ秒の境界数をカウントします。
public:
static int DateDiffMicrosecond(DateTime startDate, DateTime endDate);
public static int DateDiffMicrosecond (DateTime startDate, DateTime endDate);
static member DateDiffMicrosecond : DateTime * DateTime -> int
Public Shared Function DateDiffMicrosecond (startDate As DateTime, endDate As DateTime) As Integer
パラメーター
- startDate
- DateTime
期間の開始日。
- endDate
- DateTime
期間の終了日。
戻り値
指定した 2 つの日付間のマイクロ秒の境界数。
注釈
を使用microsecond
して交差する時間境界の種類を指定するSQL ServerDATEDIFF
関数に対応します。 このSQL Server関数の詳細については、「DATEDIFF」を参照してください。
適用対象
DateDiffMicrosecond(DateTimeOffset, DateTimeOffset)
Null 非許容型の 2 つの日付間のマイクロ秒の境界数をカウントします。
public:
static int DateDiffMicrosecond(DateTimeOffset startDate, DateTimeOffset endDate);
public static int DateDiffMicrosecond (DateTimeOffset startDate, DateTimeOffset endDate);
static member DateDiffMicrosecond : DateTimeOffset * DateTimeOffset -> int
Public Shared Function DateDiffMicrosecond (startDate As DateTimeOffset, endDate As DateTimeOffset) As Integer
パラメーター
- startDate
- DateTimeOffset
期間の開始日。
- endDate
- DateTimeOffset
期間の終了日。
戻り値
指定した 2 つの日付間のマイクロ秒の境界数。
注釈
を使用microsecond
して交差する時間境界の種類を指定するSQL ServerDATEDIFF
関数に対応します。 このSQL Server関数の詳細については、「DATEDIFF」を参照してください。
適用対象
.NET