问题描述
我想查出日期 为2011-02-02号的数据select * from tablename where idate=date('yyyy-mm-dd','2011-02-02')为什么查不出数据,而数据库中有这些数据,请问语法怎么写啊! 问题补充:william_ai 写道
解决方案
这么写select * from tablename where idate = '2011-02-02 00:00:00'
解决方案二:
用大于号看看,select * from tablename where idate > '2011-02-02 00:00:00'
时间: 2024-12-24 20:10:46