Answers for "SQL extract month and year from a time stamp"

SQL
0

extract year from date sql

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 "SQL extract month and year from a time stamp"

Code answers related to "SQL"

Browse Popular Code Answers by Language