时间:2021-07-01 10:21:17 帮助过:14人阅读
select unix_timestamp('2011-4-19 12:00:00');
select unix_timestamp('2011-4-19 12:00:00');
我数据库不是时间戳形式,而是datetime形式
你不是说要转成时间戳吗?unix_timestamp可以将你的datetime格式转换成时间戳啊
我数据库不是时间戳形式,而是datetime形式
你不是说要转成时间戳吗?unix_timestamp可以将你的datetime格式转换成时间戳啊
数据库里不是一条数据,那么多数据怎么转
数据库里不是一条数据,那么多数据怎么转
select unix_timestamp(time字段);time字段是数据库中你要转换的时间字段 他会全部都转的
直接比较就行了,可以不用转
select * from table1 where create_time>'2014-03-21 00:00:00'
查询可以直接比较
例如:select * from table where createtime>='2014-01-01 00:00:00' and creattime<'2014-01-31 00:00:00';
如果要批量显示可以这样
select *, unix_timestamp(createtime) as createtime from table;
select * from table where createtime>='2014-01-01 00:00:00' and creattime<'2014-01-31 00:00:00';