7. Write command to display system date.
8. Write command to display the name of current month.
9. Write SQL statement to display
today, the date is

Ans 7:
SELECT CURDATE();
or
SELECT CURRENT_DATE();
Ans 8:
SELECT MONTHNAME(CURRENT_DATE());
Ans 9:
SELECT CONCATE(‘Today, The Date is ‘,CURRENT_DATE());


error: Content is protected !!