KnowledgeBoat Logo

Informatics Practices

Write a command to display the name of current month.

SQL Queries

1 Like

Answer

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

Answered By

2 Likes


Related Questions