我在SQLite数据库中选择了查询。 LogInTime字段是datatime数据类型。
这是AccessDate
变量传递日期"11/16/2016"
,如格式
string sql = "SELECT * FROM Tble_Login where LogInTime = '" + AccessDate + "'";
SQLite Tble_Login看起来像这样,
执行此查询后,没有数据?我怎样才能获得数据?
答案 0 :(得分:0)
参考SQLite documentaion,您应该使用 /* $groups = Mage::getResourceModel('customer/group_collection')
->addFieldToFilter('customer_group_id', array('gt'=> 0))
->load()
->toOptionHash();
$this->addColumn('group', array(
'header' => Mage::helper('customer')->__('Group'),
'width' => '100',
'index' => 'group_id',
'type' => 'options',
'options' => $groups,
));
*/
的以下格式
AccessDate
或YYYY-MM-DD
或YYYY-MM-DD HH:MM
。在文档页面上,您可以在时间字符串部分找到更多格式
您也可以尝试使用此question中的YYYY-MM-DD HH:MM:SS
语句
BETWEEN