选择SQL数据库表的日期格式

时间:2014-06-23 13:18:52

标签: mysql database

我需要选择订单日期介于20/05/2011和19/05/2013之间的*表格行

我已经尝试过这个

select * from commandes where datecmd < 20-05-2011 and datecmd > 19-05-2013

它没有返回任何错误,但我想知道最好的日期格式一直在使用。

1 个答案:

答案 0 :(得分:0)

尝试此SQl查询

SELECT * 
    FROM commandes 
    WHERE datecmd between convert(datetime,'20-05-2011',103) and convert(datetime,'19-05-2013',103)