您好,登錄后才能下訂單哦!
字段解釋:
xh:學號
xh:姓名
nl:年齡
create table student(xh number,xm varchar2(4),nl int);
insert into student values(1,'A',21);
insert into student values(2,'B',21);
insert into student values(3,'A',21);
insert into student values(4,'A',21);
insert into student values(5,'A',21);
insert into student values(6,'C',21);
insert into student values(7,'B',21);
查看表
SQL> select * from student;
XH XM NL
---------- ------------ ----------
1 A 21
2 B 21
3 A 21
4 A 21
5 A 21
6 C 21
7 B 21
7 rows selected.
SQL>
問題:查詢有重復的姓名
思路:使用count函數做統計,如果count >1,說明有重復
SQL> select xm,count(*) from student group by xm having(count(*) > 1);
XM COUNT(*)
------------ ----------
A 4
B 2
SQL>
問題:查詢重復姓名學生的所有信息
*思路:select from student可以查看所有學生的信息,怎么查看重復的呢?上面我們已經知道了有哪些是重復的名字,那么我們只需要判斷,哪些名字在重復的名字里面即可**
SQL> select * from student where xm in (select xm from student group by xm having(count(*) >1));
XH XM NL
---------- ------------ ----------
1 A 21
2 B 21
3 A 21
4 A 21
5 A 21
7 B 21
6 rows selected.
SQL>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。