How to find current date-time?

Discussion RoomCategory: Database&SQLHow to find current date-time?
Nick asked 5 years ago

mySQL-
SELECT NOW();
SQL Server-
SELECT getdate();
Oracle-
SELECT SYSDATE FROM DUAL;

Scroll to Top