Oracle PL/SQL Tutorial/Date Timestamp Functions/CURRENT DATE — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 10:04, 26 мая 2010

Getting the Current Date in the Session Time Zone

SYSDATE() function gets the date for the operating system where the database resides.

You can get the date in your session time zone using the CURRENT_DATE() function.



SQL> SELECT CURRENT_DATE FROM dual;
CURRENT_D
---------
31-MAY-07
SQL>