how to get current date in sql server 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()