Informatics Practices

Write a command to display the name of the current month.

SQL Queries

1 Like

Answer

SELECT MONTHNAME(CURDATE());
Output
+----------------------+
| MONTHNAME(CURDATE()) |
+----------------------+
| June                 |
+----------------------+

Answered By

1 Like


Related Questions