Exercise: Format Date Display current date as "Day-Month-Year". Solution sqlCopy1SELECT STRFTIME('%d-%m-%Y', 'now') AS formatted_date;