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

From GUILLARD WIKI
Jump to navigation Jump to search
(Created page with "<syntaxhighlight lang="sql"> select to_char(sysdate,'yyyy/mm') from dual; </syntaxhighlight>")
 
Line 1: Line 1:
<syntaxhighlight lang="sql">
<syntaxhighlight lang="SQL">


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

Revision as of 10:39, 18 May 2018

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