0

I am currently working on a project that utilizes SQLite. I need to covert a stored date format from MM/DD/YYYY to YYYY/MM/DD. However, I don't know how to convert in SQLite.

Jacobm001
  • 4,431
  • 4
  • 30
  • 51
Taylor
  • 9
  • 1

1 Answers1

-1

Please take a look here:

https://sqlite.org/lang_datefunc.html

What you need is strftime function to specify the format.

Dan R.
  • 638
  • 5
  • 13
  • The input is not one of `strftime()`'s [supported date formats](http://www.sqlite.org/datatype3.html#datetime). – CL. Jul 16 '17 at 05:49