create table oness( oids number(4) PRimary key, Names varchar2(10) not null, Email varchar2(20), LastLogin date);添加的数据如下:
查询出test4、test1、test2用户最近的登录记录有两种方式:
第一种:
select%20*%20from%20oness%20awhere%20not%20exists(select%201%20from%20oness%20where%20Names%20=%20a.Names%20and%20LastLogin%20>%20a.LastLogin);查询结果为:第二种:
select%20*%20from%20oness%20a%20where%20LastLogin=(select%20max(LastLogin)%20from%20oness%20where%20Names=a.Names);查询结果为:以上两种方式查询基本一样,都可以,只不过查询后的结果顺序不同。
新闻热点
疑难解答