Answers for "change date format from dd/mm/yyyy to yyyy-mm-dd in C#"

SQL
1

c# date to string yyyy-mm-dd

var date_string = date.ToString("yyyy-MM-dd");
Posted by: Guest on October-29-2020
-1

SQL query to convert DD/MM/YYYY to YYYY-MM-DD

SELECT CONVERT(varchar(10), CONVERT(date, '13/12/2016', 103), 120)
Posted by: Guest on August-04-2020

Code answers related to "change date format from dd/mm/yyyy to yyyy-mm-dd in C#"

Code answers related to "SQL"

Browse Popular Code Answers by Language