Write a query to display the current date in SQL code example
Example 1: how to to get current date in sql
SELECT CURRENT_DATE from dual;
Example 2: sql display today's date
SELECT getdate()
SELECT CURRENT_DATE from dual;
SELECT getdate()