Answers for "get the current year and current month in sql"

SQL
2

current year sql

-- Oracle
SELECT extract(YEAR FROM sysdate) FROM dual;			// number
SELECT to_char(sysdate, 'YYYY') FROM dual;				// varchar
Posted by: Guest on May-04-2021

Code answers related to "get the current year and current month in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language