KnowledgeBoat Logo

Informatics Practices

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

SQL Queries

2 Likes

Answer

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

Answered By

3 Likes


Related Questions