Write SQL statement to display
Today, the date is <current date>
SELECT CONCAT('Today, the date is ', CURDATE()) AS CURDATE;
+-------------------------------+ | CURDATE | +-------------------------------+ | Today, the date is 2024-05-20 | +-------------------------------+