返回当前系统日期:
SELECT CustomerName, Date() AS CurrentDateFROM Customers;
SELECT CustomerName, Date() AS CurrentDate
FROM Customers;
Date() 函数返回当前系统日期。
Date()
None.