Oracle
文章平均质量分 74
i46614161
这个作者很懒,什么都没留下…
展开
-
oracle 练习题
目等值连接:练习一:查看员工的姓名和员工部门号:(要考虑到表中实际数据中空值的影响)练习二:每个员工所在的部门和部门所在的地区非等值连接:练习三:查出每个员工和每个员工的工资级别自连接:练习四:查出所有员工的部门领导的名称:( 这种sql会少一条记录,总经理没有被配置上)外连接:(防止空值时,用(+)的一方会模拟一条记录配置另一方)这就称为外连接,一个记录都不能少;原创 2009-08-31 00:08:00 · 2305 阅读 · 2 评论 -
Oracle习题答案
Part 4 practice1select e.last_name,e.dept_id,d.namefrom s_emp e,s_dept dwhere e.dept_id=d.id;2select e.last_name,d.name,r.namefrom s_emp e,s_dept d,s_region rwhere e.dept_id=d.id and原创 2009-09-01 08:41:00 · 967 阅读 · 0 评论 -
杂七杂八
------------------------------------- 创建表11 create table lwc_d 2 (id number(7) primary key, 3 name varchar2(15) not null 4 , 5 phone varchar2(11) not null unique, 6 email varc原创 2009-09-01 21:12:00 · 479 阅读 · 0 评论 -
Oracle中查询rownum和rowid的区别
在查询中,我们可以注意到,类似于“select xx from table where rownum 1)这样的查询是有正确含义的,而“select xx from table where rownum = n”这样的查询只在n=1的时候成立,“select xx from table where rownum > n”(n>1)这样的查询只能得到一个空集。另外“select xx from原创 2009-12-16 15:53:00 · 465 阅读 · 0 评论 -
Ubuntu安装Oracle后运行Sqlplus报错的解决办法
当运行sqlplus.sh的时候报出:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/nls_lang.sh: 114: [[: not found很奇怪nls_lang.sh的114行前后是这样的if [[ -n "$LC_ALL" ]]; then locale=$LC_ALLelif [[ -n "$LANG" ]]; the原创 2009-12-23 23:28:00 · 1173 阅读 · 0 评论