Informatics Practices

Write a query to show the current date and time.

SQL Queries

1 Like

Answer

SELECT NOW();
Output
+---------------------+
| NOW()               |
+---------------------+
| 2024-05-21 12:20:03 |
+---------------------+

Answered By

1 Like


Related Questions