返回计算机系统的当前日期和时间:
SELECT CustomerName, Now() AS CurrentDateTimeFROM Customers;
SELECT CustomerName, Now() AS CurrentDateTime
FROM Customers;
Now() 函数根据计算机的系统日期和时间返回当前日期和时间。
Now()
None.