Computer Science

How would you display system date as the result of a query ?

SQL Queries

2 Likes

Answer

The current system date can be obtained, using function CURDATE(), as shown below :
mysql>SELECT CURDATE();.

Answered By

1 Like


Related Questions