-
sqlplus的另一个小技能: a命令(单词append的缩写,表示追加) a(两个空格)命令语句查看全部
-
where子句中不能使用组函数,having后可以使用;当where和having可以通用的情况下,优先使用where,效率更高查看全部
-
子查询注意的10个问题查看全部
-
子查询重点查看全部
-
157和550哪个是对的查看全部
-
练习提示查看全部
-
练习结果查看全部
-
练习题 SQL> create table pm_stu( 2 stu_id varchar2(20) not null, 3 stu_name varchar2(20) 4 ); 表已创建。 SQL> create table pm_ci( 2 ci_id varchar2(20) not null, 3 stu_ids varchar2(100) 4 ); 表已创建。 SQL> insert into pm_ci (ci_id, stu_ids) values('1', '1,2,3,4') 2 ; 已创建 1 行。 SQL> insert into pm_ci(ci_id,stu_ids) values('2','1,4'); 已创建 1 行。 SQL> set linesize 200 SQL> set pagesize 30 SQL> select * from pm_ci; CI_ID STU_IDS -------------------- ---------- 1 1,2,3,4 2 1,4 SQL>查看全部
-
子查询查看全部
-
test查看全部
-
实现Oracle的分页,用嵌套子查询的方法解决查看全部
-
多行查询中的空值问题查看全部
-
rownom查看全部
-
select ... from tablename start with 条件1 connect by 条件2 where 条件3;查看全部
-
左外连接 select * from A,B where A.id = B.id(+) 右外连接 select * from A,B where A.id(+) = B.id查看全部
举报
0/150
提交
取消