Operations such as string_to_date should use format as SQL databases use (see PostgreSQL for example).
Reason: more human readable than the strptime() format with %'s
Note that the SQL format is a bit richer and might have different first element indexes (1 vs 0) in some cases.
Operations such as
string_to_dateshould use format as SQL databases use (see PostgreSQL for example).Reason: more human readable than the
strptime()format with%'sNote that the SQL format is a bit richer and might have different first element indexes (1 vs 0) in some cases.