Oracle数据库查询的使用实例记录
程序员文章站
2022-07-01 18:22:56
oracle使用实例记录
显示所有在欧洲区域工作的员工,显示他们的部门,姓名,岗位,薪资,国籍,结果按照国籍升序,薪资降序排列 select d.department_...
oracle使用实例记录
显示所有在欧洲区域工作的员工,显示他们的部门,姓名,岗位,薪资,国籍,结果按照国籍升序,薪资降序排列 select d.department_name, e.last_name, e.job_id, e.salary, c.country_name from employees e, departments d, locations l, regions r, countries c where e.department_id = d.department_id and d.location_id = l.location_id and l.country_id = c.country_id and c.region_id = r.region_id and r.region_name = 'europe' order by country_name, salary desc; 用尽可能多的方式显示姓名以小写’s’结尾的人员总数;至少2种方法 第一种方法 select count(*) from employees where last_name like '%s'; 第二种方法 select count(*) from employees where substr(last_name,-1)='s'; 正则表达式 select count(*) from employees where regexp_like(last_name,'(*)s$'); 查询所有薪资大于‘it_prog’部门任何一人的薪资员工信息,显示姓名、薪资、岗位;用2种方法实现 第一种方法 select employee_id,first_name,last_name,salary,job_id from employees where salary > any(select salary from employees where job_id='it_prog') order by salary; 第二种方法 select employee_id,first_name,last_name,salary,job_id from employees where salary > (select min(salary) from employees where job_id='it_prog') order by salary; 创建一张表与employees表相同的表,表名:employees_工号;将’marketing’,’it’ 两个部门下员工导入该表。提供脚本 create table employees_工号 as select * from employees where 1=2; insert into employees_工号 (select * from employees where job_id like 'it%' or job_id like 'mk%'); 查询hr下所有的约束/索引 select index_name ,index_type from dba_indexes where owner='hr';
上一篇: 关于MySQL数据库四大特性及数据库隔离级别知识详解
下一篇: 儿童健脾粥的家常做法
推荐阅读
-
oracle数据库sqlldr命令的使用
-
在Laravel5.6中使用Swoole的协程数据库查询
-
Oracle数据库根据时间范围查询时间范围内的年,月,日以及一天的24小时(实例)
-
Oracle查询前10条数据、查询第5~10条的记录,minus(减)方法
-
SqlServer2005中使用row_number()在一个查询中删除重复记录的方法
-
SQL查询日志 查看数据库历史查询记录的方法
-
Python操作Oracle数据库的简单方法和封装类实例
-
oracle数据库删除数据Delete语句和Truncate语句的使用比较
-
使用mysql的disctinct group by查询不重复记录
-
纯Python开发的nosql数据库CodernityDB介绍和使用实例