Informatics Practices

Write a command to display the current time.

SQL Queries

1 Like

Answer

SELECT TIME(NOW());
Output
+-------------+
| TIME(NOW()) |
+-------------+
| 15:40:57    |
+-------------+

Answered By

3 Likes


Related Questions