查询大于某一时间段的的数据记录,mysql数据库的查询语句该如何写!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询大于某一时间段的的数据记录,mysql数据库的查询语句该如何写!相关的知识,希望对你有一定的参考价值。
查询大于某一时间段的的数据记录,mysql数据库的查询语句该如何写!
如,idate字段,它里面存储的数据是: 2007-03-21 01:55:36 这种类型
我现在需要查大于这一个值的所有记录
$sql="select * from user where idate>'2007-03-21 01:55:36'"
这样写是否有误,请各位高手指教
$indate='2007-03-27 01:55:36';
$sql="select * from user where indate >".date($indate);
这种格式也能正常使用,有没有更好的方法来实再这种查询
dim sert
sert=cdate("2007-03-21 01:55:36" )
$sql="select * from user where idate>" & sert & ""本回答被提问者采纳
mysql对表中数据根据某一字段去重
要删除重复的记录,就要先查出重复的记录,这个很容易做到
select * from 表名 group by 根据哪一个字段(简称字段) having count(字段) > 1
注意:这是查出所有重复记录的第一条记录,需要保留,因此需要添加查询条件,查出所有的重复记录
select id,expect from cqssc where expect in (select expect from cqssc group by expect having count(expect)>1) and id not in(select min(id) from cqssc group by expect having count(expect)>1)
然后
delete from cqssc where id in (select id from (select id from cqssc where expect in (select expect from cqssc group by expect having count(expect)>1) and id not in (select min(id) from cqssc group by expect having count(expect)>1)) as tmpresult)
删除成功,最后再查询一下看是否还有重复记录
以上是关于查询大于某一时间段的的数据记录,mysql数据库的查询语句该如何写!的主要内容,如果未能解决你的问题,请参考以下文章
将MYSQL某一数据库中的多条记录批量插入到另一MYSQL数据库时,记录不存在则插入,存在则更新