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())