Udostępnij za pośrednictwem


GETDATE (SSIS Expression)

Returns the current date of the system in a DT_DBTIMESTAMP format. The GETDATE function takes no arguments.

[!UWAGA]

The length of the return result from the GETDATE function is 29 characters.

Składnia

GETDATE()

Arguments

None

Result Types

DT_DBTIMESTAMP

Expression Examples

This example returns the year of the current date.

DATEPART("year",GETDATE())

This example returns the number of days between a date in the ModifiedDate column and the current date.

DATEDIFF("dd",ModifiedDate,GETDATE())

This example adds three months to the current date.

DATEADD("Month",3,GETDATE())

Zobacz także

Odwołanie

GETUTCDATE (SSIS Expression)

Inne zasoby

Functions (SSIS Expression)