SQL数据库查询语句

发布网友 发布时间:2022-04-20 15:49

我来回答

6个回答

热心网友 时间:2022-04-08 11:58

select * from aa t
where not EXISTS (select * from aa where 卡号=t.卡号 and 时间>t.时间)

---前提:相同卡号的最晚时间只有一个,没有重复

热心网友 时间:2022-04-08 13:16

select * from table1 t,(select 卡号,max(时间) 时间 from table1 group by 卡号) x where t.卡号=x.卡号 and t.时间=x.时间

热心网友 时间:2022-04-08 14:51

表名test,对应字段kh,ye,sj
select temp.*,test.sj from (select kh,min(ye) as ye from test group by kh)as temp,test where temp.ye=test.ye order by temp.ye asc;

热心网友 时间:2022-04-08 16:42

select distinct 卡号 ,余额,时间 from biao group by kahao order by 时间 asc

热心网友 时间:2022-04-08 18:50

select distinct kahao,yue,shijian from biao group by kahao order by shijian

热心网友 时间:2022-04-08 21:15

在MySQL中是select 卡号,余额, max(时间) from 表名 group by 卡号
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com