Oracle 常用命令之基础使用

更新时间:2024-06-18 15:35:01 阅读量: 综合文库 文档下载

说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

Oracle 常用命令之基础使用

一、oracle数据类型 :

number : 整型值 插入值的时候 直接 (22,33,4,45,...就行)

varchar2 : 字符型 插入值的时候 '必须用单引号括起来';

number(5,2):一共5位数字,其中有两位是小数,范围是(-10^38 ~ 10^38);

number(5):就是规定有五位数字,没有小数 默认是number(5,0);

char : 查询快,但是浪费空间

char:定长,2000字符(4000字节),字符串char(5);//可以设置5可 但是内容必须是 '内容',用单引号括起来

varchar2:变长,4000字符(8000字节);

varchar2(20 byte);//规定能写20个字符 但是只能是byte类型(字节型),但是内容必须是 '内容',用单引号括起来

clob(characterlarge object);//字符型大对象,最大4G

date:时间格式,values()赋值的时候,可以用这个更改格式 : to_date('20-2-81','DD-MON-RR');

blob:二进制数据电影,图片,音乐,4G不会放到数据库里面,文件服务器

oracle命令语句

0、查看表结构 desc 表名

1、添加一个字段

alter table 表名 add(列 类型);

2、修改字段类型

alter table 表名 modify(列 类型);

3、删除一个字段

alter table 表名 drop column 列名;

4、修改表的名字 rename student to stu

5、删除表

drop table 表名

** 如果需要修改列的名字

新增一个字段,然后迁移数据,最后删除原字段 或者使用图形化工具

如果有值,这种删除,是没有办法恢复的。。

上述修改表结构相关的语句 叫做DDL ,修改,是没有办法恢复的

创建表并且插入数据

create table test( id number,

name varchar2(20), age number(2) );

1)

insert into 表名 values(所有列的值);

insert into test values(1,'zhangsan',20); sel 2)

insert into 表名(列) values(对应的值);

insert into test(name,age) values('wangwu',20);

连续使用insert into 插入多条数据 Insert into 表名

Select 值1,值2,。。。。 From dual union all Select 值1,值2,。。。。 From dual union all Select 值1,值2,。。。。 From dual ;

--------------------------------------------------------------------------------------------------

更新语句

update 表 set 列=新的值 [where 条件] --》更新满足条件的记录

update test set name='zhangsan2' where name='zhangsan' update 表 set 列=新的值 --》 更新所有的数据

update test set age =20;

----------------------------------

**删除数据:

几种删除方式: 1)

delete from 表名 where 条件 -->删除满足条件的记录 delete from test where id = 1; delete from test ; -->删除所有

commit; -->提交数据 rollback; -->回滚数据

delete方式可以恢复删除的数据,但是提交了,就没办法了 delete删除的时候,会记录日志 --》删除会很慢很慢 2)

truncate table 表名

删除所有数据 ,不会影响表结构,不会记录日志,数据不能恢复 --》删除很快 3)

drop table 表名

删除所有数据,包括表结构一并删除,不会记录日志,数据不能恢复-->删除很快

------------------------------------------------------------------------------------------ 如何查看一个SQL执行了多长时间? set timing on

小技巧

如何快速的复制数据?

1、 insert into test select * from test;

2、 create table 表名 select * from test;

-----------------------------------------------------------------

查询:基本查询,复杂查询

1、导入数据 sqlplus状态下: @文件名

基本查询

select 列 from 表名

select * from 表名 --》 所有列

查询前几行的数据

select * from 表名 where rownum<=10;

查询指定多少行到多少行的数据

select * from A where rownum <= 4 minus select * from A where rownum <= 1

----------------------------------------------- 1、去除重复的显示

select distinct 列 from 表名

2、算术运算,不能把NULL参与运算

nvl(列,值) --》如果列为空,则用“值” 替换NULL

nvl(comm,0) ---> 如果comm为空,返回0

每一个列都可以取别名

3、如何连接字符串 ||

------------------------------------------------------------------------------- 日期类型:

to_date(字符串1,字符串2) --> 字符串1 是日期的字符串 ,字符串2 是格式 ,

返回一个日期类型。

to_date('1990-1-1','yyyy-mm-dd') -->返回日期类型的1990-1-1

to_date('1990-1-1 13:30:10','yyyy-mm-dd hh24:mi:ss') -->返回日期类型的

1990-1-1 13:30:10

SQL的模糊查询:

like :匹配字符 % :0到多个字符 _ :表示单个字符

如果涉及到NULL

判断 is NULL , is not null

查询结果需要排序 order by 字段

select * from emp order by sal --》order by后面,默认升序 asc升序 desc 降序

-------------------------------

Oracle的复杂查询,统计函数,分组 sum, count ,avg, max, min

----分组: student

name sex class score zhangsan 男 10 90 李四 男 10 60 zhang 女 10 86 王五 女 20 90

统计每个班的最高分 max(score) 10

zhangsan 男 10 90 --> 90 李四 男 10 60 20

王五 女 20 90 --> 90

--------------------------------------

统计每个班的男生和女生分别的最高分

分组: class sex max(score)

10 男

zhangsan 男 10 90 --> 90 李四 男 10 60

10 女

zhang 女 10 86 --> 86 20 女

王五 女 20 90 -->90

统计函数不能跟在where条件后面 -

group by 和having子句

group by 字段 -->按照指定的字段进行分组

having 字句 --》 对分组后的结果进行筛选输出

-------------------------------

一般来说,group by后面的字段,最好出现在 select后面

统计函数统计的是每一个分组的结果!!!

----------

关键字出现的顺序

select ??? from .... where ... group by ... having ... order by ....

--1、查看表空间的名称及大小 SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size FROM dba_tablespaces t, dba_data_files d WHERE t.tablespace_name = d.tablespace_name GROUP BY t.tablespace_name; --2、查看表空间物理文件的名称及大小 SELECT tablespace_name, file_id, file_name, round(bytes / (1024 * 1024), 0) total_space FROM dba_data_files ORDER BY tablespace_name; --3、查看回滚段名称及大小 SELECT segment_name, tablespace_name, r.status, (initial_extent / 1024) initialextent, (next_extent / 1024) nextextent, max_extents, v.curext curextent FROM dba_rollback_segs r, v$rollstat v WHERE r.segment_id = v.usn(+) ORDER BY segment_name; --4、查看控制文件 SELECT NAME FROM v$controlfile; --5、查看日志文件 SELECT MEMBER FROM v$logfile; --6、查看表空间的使用情况 SELECT SUM(bytes) / (1024 * 1024) AS free_space, tablespace_name FROM dba_free_space GROUP BY tablespace_name; SELECT a.tablespace_name, a.bytes total, b.bytes used, c.bytes free, (b.bytes * 100) / a.bytes \USED \ (c.bytes * 100) / a.bytes \FREE \FROM sys.sm$ts_avail a, sys.sm$ts_used b, sys.sm$ts_free c WHERE a.tablespace_name = b.tablespace_name AND a.tablespace_name = c.tablespace_name; --7、查看数据库库对象 SELECT owner, object_type, status, COUNT(*) count# FROM all_objects GROUP BY owner, object_type, status; --8、查看数据库的版本 SELECT version FROM product_component_version WHERE substr(product, 1, 6) = 'Oracle'; --9、查看数据库的创建日期和归档方式 SELECT created, log_mode, log_mode FROM v$database; --1G=1024MB --1M=1024KB --1K=1024Bytes --1M=11048576Bytes --1G=1024*11048576Bytes=11313741824Bytes SELECT a.tablespace_name \表空间名\ total \表空间大小\ free \表空间剩余大小\ (total - free) \表空间使用大小\ total / (1024 * 1024 * 1024) \表空间大小(G)\ free / (1024 * 1024 * 1024) \表空间剩余大小(G)\ (total - free) / (1024 * 1024 * 1024) \表空间使用大小(G)\ round((total - free) / total, 4) * 100 \使用率 %\FROM (SELECT tablespace_name, SUM(bytes) free FROM dba_free_space GROUP BY tablespace_name) a, (SELECT tablespace_name, SUM(bytes) total FROM dba_data_files GROUP BY tablespace_name) b WHERE a.tablespace_name = b.tablespace_name

模拟测试一

? ? ? ? ? ? ? ?

1.创建业务用户表空间 2.创建业务用户 3.赋予用户权限 4.创建业务表 5.创建索引 6.业务查询SQL 7.删除业务用户及数据 8.删除业务表空间

1.创建业务用户表空间

?

假设使用了OMF管理,不需要明确指定数据目录(判定是否使用了OMF技术,查看db_create_file_dest参数配置:show parameter db_create_file_dest)

?

-- 数据表空间createtablespace datafilesize30Mautoextendoff;

dbs_d_jingyu

-- 临时表空间createtemporarytablespace temp_jingyu tempfile size30Mautoextendoff;

-- 索引表空间(可选)createtablespace dbs_i_jingyu datafilesize30Mautoextendoff;

? ?

假设文件系统管理,且未使用OMF管理,规划的数据目录是/oradata1

?

-- 数据表空间createtablespace dbs_d_jingyu datafile'/oradata1/datafiles/dbs_d_jingyu01.dbf'size30Mautoextendoff;

-- 临时表空间createtemporarytablespace temp_jingyu tempfile '/oradata1/tempfiles/temp_jingyu01.tmp'size30Mautoextendoff;

-- 索引表空间(可选)createtablespace dbs_i_jingyu datafile'/oradata1/datafiles/dbs_i_jingyu01.dbf'size30Mautoextendoff;

假设ASM磁盘组,指定磁盘组是+DATA,具体路径OMF管理

?

-- 数据表空间createtablespace datafile'+DATA'size30Mautoextendoff;

dbs_d_jingyu

-- 临时表空间createtemporarytablespace temp_jingyu tempfile '+DATA'size30Mautoextendoff;

-- 索引表空间(可选)createtablespace dbs_i_jingyu datafile'+DATA'size30Mautoextendoff;

?

2.创建业务用户

-- 假设创建用户 jingyu 密码 jingyu,默认临时表空间 temp_jingyu, 默认数据表空间 dbs_d_jingyu。

CREATEUSER jingyu IDENTIFIEDBY jingyu TEMPORARYTABLESPACE temp_jingyu DEFAULTTABLESPACE dbs_d_jingyu QUOTAUNLIMITEDON dbs_d_jingyu;

3.赋予用户权限

-- 赋予普通业务用户权限grantresource, connectto jingyu;-- 赋予DBA用户权限grant dba to jingyu;

4.创建业务表

新建业务用户登录,创建T1,T2两张业务表,并插入测试数据。 -- 业务用户登录 conn jingyu/jingyu

-- 删除T1,T2两张表

droptable t1 cascadeconstraintspurge;droptable t2 cascadeconstraintspurge;

-- 创建T1,T2两张表

createtable t1( idnumbernotnull, nnumber, contents varchar2(4000) ) tablespace dbs_d_jingyu;

createtable t2( idnumbernotnull, t1_id numbernotnull, nnumber, contents varchar2(4000) ) tablespace dbs_d_jingyu;

-- 初始化向T1,T2表插入随机测试数据 execute dbms_random.seed(0);

set timing oninsertinto t1selectrownum, rownum, dbms_random.string('a',50) from dual connectbylevel<= 100orderby dbms_random.random;commit;

insertinto t2selectrownum, rownum, rownum, dbms_random.string('b',50)from dual connectbylevel<= 100000orderby dbms_random.random; commit;

-- 查询T1,T2表数据量

selectcount(1) from t1;selectcount(1) from t2;

5.创建索引

-- 创建T1表字段n的索引idx_t1_ncreateindex idx_t1_n on t1(n) tablespace dbs_i_jingyu;

-- 创建T2表字段id的索引idx_t2_t1idcreateindex idx_t2_t1id on t2(t1_id) tablespace dbs_i_jingyu;

6.业务查询SQL

-- 业务查询SQL 1select * from t1, t2 where t1.id = t2.t1_id and t1.n = 19;

-- 业务查询SQL 2select * from t1, t2 where t1.id = t2.t1_id;

7.删除业务用户及数据

-- 删除业务用户jingyudropuser jingyu cascade;

8.删除业务表空间

-- 删除数据表空间及其文件includingcontentsanddatafiles;

droptablespace dbs_d_jingyu

-- 删除索引表空间及其文件includingcontentsanddatafiles;

-- 删除临时表空间及其文件includingcontentsanddatafiles;

droptablespace dbs_i_jingyu droptablespace temp_jingyu

模拟测试二

create table student(

sno varchar2(10) primary key, sname varchar2(20), sage number(2), ssex varchar2(5) );

create table teacher(

tno varchar2(10) primary key, tname varchar2(20) );

create table course( cno varchar2(10), cname varchar2(20), tno varchar2(20),

constraint pk_course primary key (cno,tno) );

create table sc( sno varchar2(10), cno varchar2(10), score number(4,2),

constraint pk_sc primary key (sno,cno) );

/*******初始化学生表的数据******/

insert into student values ('s001','张三',23,'男'); insert into student values ('s002','李四',23,'男'); insert into student values ('s003','吴鹏',25,'男'); insert into student values ('s004','琴沁',20,'女'); insert into student values ('s005','王丽',20,'女'); insert into student values ('s006','李波',21,'男'); insert into student values ('s007','刘玉',21,'男'); insert into student values ('s008','萧蓉',21,'女'); insert into student values ('s009','陈萧晓',23,'女'); insert into student values ('s010','陈美',22,'女'); commit;

/******************初始化教师表***********************/ insert into teacher values ('t001', '刘阳'); insert into teacher values ('t002', '谌燕'); insert into teacher values ('t003', '胡明星'); commit;

/***************初始化课程表****************************/ insert into course values ('c001','J2SE','t002');

insert into course values ('c002','Java Web','t002'); insert into course values ('c003','SSH','t001'); insert into course values ('c004','Oracle','t001');

insert into course values ('c005','SQL SERVER 2005','t003'); insert into course values ('c006','C#','t003');

insert into course values ('c007','JavaScript','t002'); insert into course values ('c008','DIV+CSS','t001'); insert into course values ('c009','PHP','t003'); insert into course values ('c010','EJB3.0','t002'); commit;

/***************初始化成绩表***********************/ insert into sc values ('s001','c001',78.9); insert into sc values ('s002','c001',80.9); insert into sc values ('s003','c001',81.9); insert into sc values ('s004','c001',60.9); insert into sc values ('s001','c002',82.9); insert into sc values ('s002','c002',72.9); insert into sc values ('s003','c002',81.9); insert into sc values ('s001','c003','59'); commit; 练习:

注意:以下练习中的数据是根据初始化到数据库中的数据来写的SQL 语句,请大家务必注意。

1、查询“c001”课程比“c002”课程成绩高的所有学生的学号; 2、查询平均成绩大于60 分的同学的学号和平均成绩; 3、查询所有同学的学号、姓名、选课数、总成绩; 4、查询姓“刘”的老师的个数;

5、查询没学过“谌燕”老师课的同学的学号、姓名;

6、查询学过“c001”并且也学过编号“c002”课程的同学的学号、姓名; 7、查询学过“谌燕”老师所教的所有课的同学的学号、姓名;

8、查询课程编号“c002”的成绩比课程编号“c001”课程低的所有同学的学号、姓名; 9、查询所有课程成绩小于60 分的同学的学号、姓名; 10、查询没有学全所有课的同学的学号、姓名;

11、查询至少有一门课与学号为“s001”的同学所学相同的同学的学号和姓名; 12、查询至少学过学号为“s001”同学所有一门课的其他同学学号和姓名; 13、把“SC”表中“谌燕”老师教的课的成绩都更改为此课程的平均成绩; 14、查询和“s001”号的同学学习的课程完全相同的其他同学学号和姓名; 15、删除学习“谌燕”老师课的SC 表记录;

16、向SC 表中插入一些记录,这些记录要求符合以下条件:没有上过编号“c002”课程的同学学号、“c002”号课的平均成绩;

17、查询各科成绩最高和最低的分:以如下形式显示:课程ID,最高分,最低分 18、按各科平均成绩从低到高和及格率的百分数从高到低顺序 19、查询不同老师所教不同课程平均分从高到低显示 20、统计列印各科成绩,各分数段人数:课程ID,课程名称,[100-85],[85-70],[70-60],[ <60] 21、查询各科成绩前三名的记录:(不考虑成绩并列情况) 22、查询每门课程被选修的学生数

23、查询出只选修了一门课程的全部学生的学号和姓名 24、查询男生、女生人数 25、查询姓“张”的学生名单

26、查询同名同性学生名单,并统计同名人数

27、1981 年出生的学生名单(注:Student 表中Sage 列的类型是number)

28、查询每门课程的平均成绩,结果按平均成绩升序排列,平均成绩相同时,按课程号降序排列

29、查询平均成绩大于85 的所有学生的学号、姓名和平均成绩

30、查询课程名称为“数据库”,且分数低于60 的学生姓名和分数 31、查询所有学生的选课情况;

32、查询任何一门课程成绩在70 分以上的姓名、课程名称和分数; 33、查询不及格的课程,并按课程号从大到小排列

34、查询课程编号为c001 且课程成绩在80 分以上的学生的学号和姓名; 35、求选了课程的学生人数

36、查询选修“谌燕”老师所授课程的学生中,成绩最高的学生姓名及其成绩 37、查询各个课程及相应的选修人数

38、查询不同课程成绩相同的学生的学号、课程号、学生成绩 39、查询每门功课成绩最好的前两名

40、统计每门课程的学生选修人数(超过10 人的课程才统计)。要求输出课程号和选修人数,查询结果按人数降序排列,若人数相同,按课程号升序排列 41、检索至少选修两门课程的学生学号

42、查询全部学生都选修的课程的课程号和课程名

43、查询没学过“谌燕”老师讲授的任一门课程的学生姓名 44、查询两门以上不及格课程的同学的学号及其平均成绩

45、检索“c004”课程分数小于60,按分数降序排列的同学学号 46、删除“s002”同学的“c001”课程的成绩 答案:

1.

********************************* select a.* from

(select * from sc a where a.cno='c001') a, (select * from sc b where b.cno='c002') b where a.sno=b.sno and a.score > b.score; ********************************* select * from sc a where a.cno='c001'

and exists(select * from sc b where b.cno='c002' and a.score>b.score and a.sno = b.sno)

********************************* 2.

*********************************

select sno,avg(score) from sc group by sno having avg(score)>60; ********************************* 3.

*********************************

select a.*,s.sname from (select sno,sum(score),count(cno) from sc group by sno) a ,student s where a.sno=s.sno ********************************* 4.

*********************************

select count(*) from teacher where tname like '刘%'; ********************************* 5.

********************************* select a.sno,a.sname from student a where a.sno not in

(select distinct s.sno from sc s,

(select c.*

from course c , (select tno

from teacher t

where tname='谌燕')t where c.tno=t.tno) b where s.cno = b.cno )

*********************************

select * from student st where st.sno not in

(select distinct sno from sc s join course c on s.cno=c.cno join teacher t on c.tno=t.tno where tname='谌燕') *********************************

6.

********************************* select st.* from sc a join sc b on a.sno=b.sno join student st on st.sno=a.sno

where a.cno='c001' and b.cno='c002' and st.sno=a.sno; ********************************* 7.

*********************************

select st.* from student st join sc s on st.sno=s.sno join course c on s.cno=c.cno join teacher t on c.tno=t.tno where t.tname='谌燕'

********************************* 8.

********************************* select * from student st join sc a on st.sno=a.sno join sc b on st.sno=b.sno

where a.cno='c002' and b.cno='c001' and a.score < b.score ********************************* 9.

********************************* select st.*,s.score from student st join sc s on st.sno=s.sno join course c on s.cno=c.cno where s.score <60

********************************* 10.

*********************************

select stu.sno,stu.sname,count(sc.cno) from student stu left join sc on stu.sno=sc.sno group by stu.sno,stu.sname

having count(sc.cno)<(select count(distinct cno)from course) =================================== select * from student where sno in (select sno from

(select stu.sno,c.cno from student stu cross join course c minus

select sno,cno from sc) )

===================================

********************************* 11.

********************************* select st.* from student st, (select distinct a.sno from (select * from sc) a,

(select * from sc where sc.sno='s001') b where a.cno=b.cno) h

where st.sno=h.sno and st.sno<>'s001' ********************************* 12.

********************************* select * from sc left join student st on st.sno=sc.sno where sc.sno<>'s001' and sc.cno in

(select cno from sc where sno='s001')

********************************* 13.

*********************************

update sc c set score=(select avg(c.score) from course a,teacher b where a.tno=b.tno and b.tname='谌燕' and a.cno=c.cno group by c.cno) where cno in(

select cno from course a,teacher b where a.tno=b.tno and b.tname='谌燕')

********************************* 14.

********************************* select* from sc where sno<>'s001' minus (

select* from sc minus

select * from sc where sno='s001' )

********************************* 15.

*********************************

delete from sc where sc.cno in (

select cno from course c

left join teacher t on c.tno=t.tno where t.tname='谌燕' )

********************************* 16.

********************************* insert into sc (sno,cno,score)

select distinct st.sno,sc.cno,(select avg(score)from sc where cno='c002') from student st,sc where not exists

(select * from sc where cno='c002' and sc.sno=st.sno) and sc.cno='c002'; ********************************* 17.

*********************************

select cno ,max(score),min(score) from sc group by cno; ********************************* 18.

*********************************

select cno,avg(score),sum(case when score>=60 then 1 else 0 end)/count(*) as 及格率

from sc group by cno

order by avg(score) , 及格率desc ********************************* 19.

********************************* select max(t.tno),max(t.tname),max(c.cno),max(c.cname),c.cno,avg(score) from sc , course c,teacher t

where sc.cno=c.cno and c.tno=t.tno group by c.cno

order by avg(score) desc

********************************* 20.

********************************* select sc.cno,c.cname,

sum(case when score between 85 and 100 then 1 else 0 end) AS \sum(case when score between 70 and 85 then 1 else 0 end) AS \sum(case when score between 60 and 70 then 1 else 0 end) AS \sum(case when score <60 then 1 else 0 end) AS \from sc, course c where sc.cno=c.cno

group by sc.cno ,c.cname;

********************************* 21.

********************************* select * from

(select sno,cno,score,row_number()over(partition by cno order by score desc) rn from sc) where rn<4

********************************* 22.

*********************************

select cno,count(sno)from sc group by cno; ********************************* 23.

*********************************

select sc.sno,st.sname,count(cno) from student st left join sc on sc.sno=st.sno

group by st.sname,sc.sno having count(cno)=1; ********************************* 24.

*********************************

select ssex,count(*)from student group by ssex; ********************************* 25.

*********************************

select * from student where sname like '张%'; ********************************* 26.

*********************************

select sname,count(*)from student group by sname having count(*)>1; ********************************* 27.

********************************* select sno,sname,sage,ssex from student t where to_char(sysdate,'yyyy')-sage =1988 ********************************* 28.

*********************************

select cno,avg(score) from sc group by cno order by avg(score)asc,cno desc; ********************************* 29.

*********************************

select st.sno,st.sname,avg(score) from student st left join sc

on sc.sno=st.sno

group by st.sno,st.sname having avg(score)>85; ********************************* 30.

*********************************

select sname,score from student st,sc,course c

where st.sno=sc.sno and sc.cno=c.cno and c.cname='Oracle' and sc.score<60 ********************************* 31.

*********************************

select st.sno,st.sname,c.cname from student st,sc,course c where sc.sno=st.sno and sc.cno=c.cno; ********************************* 32.

*********************************

select st.sname,c.cname,sc.score from student st,sc,course c where sc.sno=st.sno and sc.cno=c.cno and sc.score>70 ********************************* 33.

*********************************

select sc.sno,c.cname,sc.score from sc,course c

where sc.cno=c.cno and sc.score<60 order by sc.cno desc; ********************************* 34.

*********************************

select st.sno,st.sname,sc.score from sc,student st where sc.sno=st.sno and cno='c001' and score>80; ********************************* 35.

********************************* select count(distinct sno) from sc; ********************************* 36.

*********************************

select st.sname,score from student st,sc ,course c,teacher t where

st.sno=sc.sno and sc.cno=c.cno and c.tno=t.tno and t.tname='谌燕' and sc.score=

(select max(score)from sc where sc.cno=c.cno) ********************************* 37.

*********************************

select cno,count(sno) from sc group by cno; *********************************

38.

*********************************

select a.* from sc a ,sc b where a.score=b.score and a.cno<>b.cno ********************************* 39.

********************************* select * from (

select sno,cno,score,row_number()over(partition by cno order by score desc) my_rn from sc t )

where my_rn<=2

********************************* 40.

*********************************

select cno,count(sno) from sc group by cno having count(sno)>10

order by count(sno) desc,cno asc; ********************************* 41.

*********************************

select sno from sc group by sno having count(cno)>1; ||

select sno from sc group by sno having count(sno)>1; ********************************* 42.

*********************************

select distinct(c.cno),c.cname from course c ,sc where sc.cno=c.cno ||

select cno,cname from course c where c.cno in

(select cno from sc group by cno) ********************************* 43.

********************************* select st.sname from student st where st.sno not in

(select distinct sc.sno from sc,course c,teacher t where sc.cno=c.cno and c.tno=t.tno and t.tname='谌燕') ********************************* 44.

********************************* select sno,avg(score)from sc where sno in

(select sno from sc where sc.score<60 group by sno having count(sno)>1 ) group by sno

********************************* 45.

*********************************

select sno from sc where cno='c004' and score<90 order by score desc; ********************************* 46.

*********************************

delete from sc where sno='s002' and cno='c001'; *********************************

本文来源:https://www.bwwdw.com/article/y6l3.html

Top