Difference between revisions of "SQL - Date format yyyy/mm"

From GUILLARD WIKI
Jump to navigation Jump to search
 
Line 1: Line 1:
<syntaxhighlight lang="SQL">
<syntaxhighlight lang="sql">


select to_char(sysdate,'yyyy/mm')  
select to_char(sysdate,'yyyy/mm')  

Latest revision as of 10:39, 18 May 2018

select to_char(sysdate,'yyyy/mm') 
from dual;