次の方法で共有


SqlMethods.DateDiffMicrosecond メソッド

定義

指定した 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)

パラメーター

startDate
Nullable<DateTime>

期間の開始日。

endDate
Nullable<DateTime>

期間の終了日。

戻り値

両方のパラメーターが 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」を参照してください。

適用対象