您好,欢迎访问一九零五行业门户网

常用的sql语句

1.查询每个用户最新的发言记录:
select max(time) from 2017sxgf group by id order by time desc limit 10;
2.找到发言数最多的用户id和次数
select userid,count(userid) from orders  where userid != '' group by userid order by count(userid) desc  limit 1;
3.关于mysql中每个用户取1条记录的三种写法第一种是先排序,然后group,这样的话自然可以取到最适合的一条数据。
缺点很明显:using temporary; using filesort
select * from (select * from 2017sxgf order by time desc)t group by mobile limit 10;
第二种是联合查询 
select * from (select max(time) as btime  from 2017sxgf group by mobile limit 10)t left join  2017sxgf as s on t.btime = s.time;
第三种是子查询
select * from 2017sxgf where exists(select mobile from (select max(time) as btime from 2017sxgf  group by mobile limit 10)t where t.btime = 2017sxgf.time);
5.
以上就是常用的sql语句的详细内容。
其它类似信息

推荐信息