SqlMethods.DateDiffYear 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 두 날짜 사이의 연도 경계 수를 셉니다.
오버로드
DateDiffYear(Nullable<DateTime>, Nullable<DateTime>) |
두 nullable 날짜 사이의 연도 경계 수를 셉니다. |
DateDiffYear(DateTime, DateTime) |
nullable이 아닌 두 날짜 사이의 연도 경계 수를 셉니다. |
DateDiffYear(DateTimeOffset, DateTimeOffset) |
nullable이 아닌 두 날짜 사이의 연도 경계 수를 셉니다. |
DateDiffYear(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>) |
두 nullable 날짜 사이의 연도 경계 수를 셉니다. |
설명
SQL Server에 해당 DATEDIFF
함수를 사용 하 여 year
시간 경계의 유형을 지정 하려면 교차 합니다. 이 SQL Server 함수에 대 한 자세한 내용은 참조 하세요 DATEDIFF합니다.
DateDiffYear(Nullable<DateTime>, Nullable<DateTime>)
두 nullable 날짜 사이의 연도 경계 수를 셉니다.
public:
static Nullable<int> DateDiffYear(Nullable<DateTime> startDate, Nullable<DateTime> endDate);
public static int? DateDiffYear (DateTime? startDate, DateTime? endDate);
static member DateDiffYear : Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
Public Shared Function DateDiffYear (startDate As Nullable(Of DateTime), endDate As Nullable(Of DateTime)) As Nullable(Of Integer)
매개 변수
반환
두 매개 변수가 모두 null
이 아니면 지정된 두 날짜 사이의 연도 경계 수를 반환합니다. 매개 변수 중 하나 또는 둘 모두가 null
인 경우 null
값을 반환합니다.
설명
SQL Server에 해당 DATEDIFF
함수를 사용 하 여 year
시간 경계의 유형을 지정 하려면 교차 합니다. 이 SQL Server 함수에 대 한 자세한 내용은 참조 하세요 DATEDIFF합니다.
적용 대상
DateDiffYear(DateTime, DateTime)
nullable이 아닌 두 날짜 사이의 연도 경계 수를 셉니다.
public:
static int DateDiffYear(DateTime startDate, DateTime endDate);
public static int DateDiffYear (DateTime startDate, DateTime endDate);
static member DateDiffYear : DateTime * DateTime -> int
Public Shared Function DateDiffYear (startDate As DateTime, endDate As DateTime) As Integer
매개 변수
- startDate
- DateTime
기간의 시작 날짜입니다.
- endDate
- DateTime
기간의 종료 날짜입니다.
반환
지정된 두 날짜 사이의 연도 경계 수입니다.
설명
SQL Server에 해당 DATEDIFF
함수를 사용 하 여 year
시간 경계의 유형을 지정 하려면 교차 합니다. 이 SQL Server 함수에 대 한 자세한 내용은 참조 하세요 DATEDIFF합니다.
적용 대상
DateDiffYear(DateTimeOffset, DateTimeOffset)
nullable이 아닌 두 날짜 사이의 연도 경계 수를 셉니다.
public:
static int DateDiffYear(DateTimeOffset startDate, DateTimeOffset endDate);
public static int DateDiffYear (DateTimeOffset startDate, DateTimeOffset endDate);
static member DateDiffYear : DateTimeOffset * DateTimeOffset -> int
Public Shared Function DateDiffYear (startDate As DateTimeOffset, endDate As DateTimeOffset) As Integer
매개 변수
- startDate
- DateTimeOffset
기간의 시작 날짜입니다.
- endDate
- DateTimeOffset
기간의 종료 날짜입니다.
반환
지정된 두 날짜 사이의 연도 경계 수입니다.
설명
SQL Server에 해당 DATEDIFF
함수를 사용 하 여 year
시간 경계의 유형을 지정 하려면 교차 합니다. 이 SQL Server 함수에 대 한 자세한 내용은 참조 하세요 DATEDIFF합니다.
적용 대상
DateDiffYear(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
두 nullable 날짜 사이의 연도 경계 수를 셉니다.
public:
static Nullable<int> DateDiffYear(Nullable<DateTimeOffset> startDate, Nullable<DateTimeOffset> endDate);
public static int? DateDiffYear (DateTimeOffset? startDate, DateTimeOffset? endDate);
static member DateDiffYear : Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
Public Shared Function DateDiffYear (startDate As Nullable(Of DateTimeOffset), endDate As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)
매개 변수
- startDate
- Nullable<DateTimeOffset>
기간의 시작 날짜입니다.
- endDate
- Nullable<DateTimeOffset>
기간의 종료 날짜입니다.
반환
두 매개 변수가 모두 null
이 아니면 지정된 두 날짜 사이의 연도 경계 수를 반환합니다. 매개 변수 중 하나 또는 둘 모두가 null
인 경우 null
값을 반환합니다.
설명
SQL Server에 해당 DATEDIFF
함수를 사용 하 여 year
시간 경계의 유형을 지정 하려면 교차 합니다. 이 SQL Server 함수에 대 한 자세한 내용은 참조 하세요 DATEDIFF합니다.
적용 대상
.NET