Finds and returns the current date as it exists on the server.
current_date()
1> select datename(month, current_date()) 2> go
------------------------------ August
1> select datepart(month, current_date()) 2> go
----------- 8 (1 row affected)
See also select, where clause in Reference Manual: Commands.
ANSI SQL – Compliance level: Entry-level compliant.
Any user can execute current_date.