Answers for "sql convert character month"

SQL
1

sql convert datetime to year month

DATE_FORMAT(_column, '%Y-%m')AS `yyyy-mm`,
Posted by: Guest on February-25-2021
2

sql to char function with date

SELECT
  TO_CHAR( sysdate, 'YYYY-MM-DD' )
FROM
  dual;
Posted by: Guest on March-07-2020

Code answers related to "sql convert character month"

Code answers related to "SQL"

Browse Popular Code Answers by Language