Answers for "convert date to yyyy-MM-dd format using monet"

SQL
18

javascript convert date to yyyy-mm-dd

// `date` is a `Date` object
const formatYmd = date => date.toISOString().slice(0, 10);

// Example
formatYmd(new Date());      // 2020-05-06
Posted by: Guest on July-03-2020
0

sql convert date to string yyyy-mm-dd

select CONVERT(char(10), GetDate(),126)
/* 2020-12-23 */
Posted by: Guest on December-23-2020

Code answers related to "convert date to yyyy-MM-dd format using monet"

Code answers related to "SQL"

Browse Popular Code Answers by Language