有表
查询 time 最大 con 非空的时间 注:time 为整个表 最大
现有数据
要求结果 时间最大 并且有内容
sql语句
select a.id ,a.con, max(b.time) from test a, test b
where a.con <> '' and a.time in (select max(time) from test where con <> '' );
还有没有更好的方法啊。。。。。。。。。。。。。。。
未完待续 +1s
有表
查询 time 最大 con 非空的时间 注:time 为整个表 最大
现有数据
要求结果 时间最大 并且有内容
sql语句
select a.id ,a.con, max(b.time) from test a, test b
where a.con <> '' and a.time in (select max(time) from test where con <> '' );
还有没有更好的方法啊。。。。。。。。。。。。。。。
未完待续 +1s