score 分数 sex性别 name名字
---------------------------------------------------------
select score,sex,name,max(score) from table group by sex这样试试?或者你union all试试
select name,sex,score from table where sex='f' order by score desc union allselect name,sex,score from table where sex='m' order by score desc limit 2
首先如果只知道年龄,可以得出出生年份,但是没办法直接得出准确的出生日期的。查询:select sex 性别,age 年龄 from student
更新:update student s set s.age=2019-s.age
你这个相当于两个条件,所以就需要查询两次了,如果合并,这就需要子查询了。select * from table t where t.id in(select t.id from table t where t.sex='男' limit 100) or t.id in(select t.id from table t where t.sex='女' limit 100)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)