Informatics Practices

Write commands to display the system date.

SQL Queries

1 Like

Answer

SELECT SYSDATE();
Output
+---------------------+
| SYSDATE()           |
+---------------------+
| 2024-06-14 11:56:41 |
+---------------------+

Answered By

2 Likes


Related Questions