search
HomeComputer TutorialsComputer KnowledgePractice ORACLE database questions
Practice ORACLE database questionsJan 23, 2024 pm 09:48 PM
oracle question

Practice ORACLE database questions

ORACLE database exercises

Use the emp table under the scott/tiger user to complete the following exercises. The structure of the table is explained as follows

emp employee table field content is as follows:

empno employee number

ename Employee name

job work

mgr Superior number

hiredate Date hired

sal salary

comm Commission

deptno department number

1.Select all employees in department 30.

2. List the names, numbers and department numbers of all clerks (CLERK).

3. Find employees whose commissions are higher than their salaries.

4. Find employees whose commission is higher than 60% of their salary.

5. Find the detailed information of all managers (MANAGER) in department 10 and all clerks (CLERK) in department 20.

6. Find the detailed information of all managers (MANAGER) in department 10, all clerks (CLERK) in department 20, and all employees who are neither managers nor clerks but whose salary is greater than or equal to 2000.

7. Find out the different jobs of employees who work on commission.

8. Find employees who charge no commission or charge less than 100 commission.

9. Find all employees employed on the third to last day of each month.

10. Find employees who were hired more than 12 years ago.

11. Display the names of all employees with initial capital letters.

12. Display the name of the employee with exactly 5 characters.

13.Display the names of employees without "R".

14.Display the first three characters of all employees’ names.

15. Display the names of all employees and replace all "A" with a

16. Display the names and dates of employment of employees with more than 10 years of service.

17. Display employee details, sorted by name.

18. Display the names and dates of employment of employees, ranking the oldest employees first based on their years of service.

19. Display the names, jobs and salaries of all employees, sorted by job in descending order, or by salary if the jobs are the same.

20. Display the names of all employees, the year and month they joined the company, sorted by the month of employment date, if the months are the same, the employees with the earliest year will be sorted first.

21. Display the daily salary of all employees when a month is 30 days, ignoring the remainder.

22. Find all employees hired in February (of any year).

23.For each employee, display the number of days since he joined the company.

24. Display the names of all employees whose name field contains "A" anywhere.

25. Display the service years of all employees in the form of year, month and day. (Approximately)

oracle question

(1) select deptno from dept where depptno in (select deptno from em);

(2)select empno,ename,sal from em where sal>(select sal from em where ename = 'SMITH');

(3)SELECT e.ename,d.dname from em e,dept d where e.deptno=d.deptno and e.job = 'CLERK';

(4)select empno,ename from em where job in (select job from em where ename = 'SCOTT') ;

(5)select job,min(sal) from em group by job;

(6)select d.dname ,min(e.sal) from dept d,em e

where d.deptno=e.deptno and e.job ='MANAGER' group by d.dname;

Oracle 11G SQL practice homework questions

7.select employee name, salary from table where salary 8.select employee name, salary from table where salary>avg (salary) order by position;

9. Example: The number of column n in t1 is [2,3]; the number of column n in t2 is [1,2,3,4]

select * from t2 where n >any(select n from t1); Result: 3,4.

Note: Query which of the numbers in column n in table t2 is the largest number [including max] than the number in column n in table t1.

select * from t2 where n = any(select n from t1); Result: 2,3.

select * from t2 where n 10.select * from t2 where n >all(select n from t1); Result: 4.

select * from t2 where n 12.SELECT column_name(s) FROM table_name1 UNION SELECT column_name(s) FROM table_name2; merge table_name1 and table_name2 tables without duplicate columns.

SELECT column_name(s) FROM table_name1 UNION ALL SELECT column_name(s) FROM table_name2; Connect all the data in the two tables table_name1 and table_name2, there are duplicates.

An oracle stored procedure problem solution

CREATE TABLE SC(

SNO INT,

CNO varchar(10),

GRADE INT

);

INSERT INTO SC VALUES(95001, 'Math', 75);

INSERT INTO SC VALUES(95001, '中文', 92);

INSERT INTO SC VALUES(95002, 'English', 64);

INSERT INTO SC VALUES(95002, 'English', 77);

INSERT INTO SC VALUES(95003, 'Math', 85);

CREATE TABLE SC_TOTAL(

SNO INT PRIMARY KEY,

"Mathematics" number(5,2),

"Chinese" number(5,2),

"English" number(5,2),

"Average score" number(5,2)

);

DECLARE

v_row_count INT;

BEGIN

FOR sc_rec IN (SELECT * FROM SC)

LOOP

-- Determine whether the data has

SELECT COUNT(*) INTO v_row_count

FROM SC_TOTAL

WHERE SNO = sc_rec.SNO;

IF v_row_count = 0 THEN

-- The data does not exist. Insert first.

INSERT INTO SC_TOTAL(SNO) VALUES (sc_rec.SNO);

END IF;

-- Based on the course, update specific columns.

IF sc_rec.CNO = 'Mathematics' THEN

UPDATE SC_TOTAL SET "MATH" = sc_rec.GRADE WHERE SNO = sc_rec.SNO;

ELSIF sc_rec.CNO = 'Chinese' THEN

UPDATE SC_TOTAL SET "中文" = sc_rec.GRADE WHERE SNO = sc_rec.SNO;

ELSIF sc_rec.CNO = 'English' THEN

UPDATE SC_TOTAL SET "English" = sc_rec.GRADE WHERE SNO = sc_rec.SNO;

END IF;

-- Calculate the average score.

UPDATE SC_TOTAL

SET "Average score" = (NVL ("Mathematics", 0) NVL ("Chinese", 0) NVL ("English", 0))

/ (NVL2 ("Mathematics", 1,0) NVL2 ("Chinese", 1, 0) NVL2 ("English", 1, 0))

WHERE SNO = sc_rec.SNO;

END LOOP;

END;

/

-- Data verification.

SQL>SELECT * FROM SC_TOTAL;

SNO Mathematics Chinese English Average Score

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

95001 75 92 83.5

95002 77 77

95003 85 85

The above is the detailed content of Practice ORACLE database questions. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:Excel办公网. If there is any infringement, please contact admin@php.cn delete
How to Solve Windows Error Code "INVALID_DATA_ACCESS_TRAP" (0x00000004)How to Solve Windows Error Code "INVALID_DATA_ACCESS_TRAP" (0x00000004)Mar 11, 2025 am 11:26 AM

This article addresses the Windows "INVALID_DATA_ACCESS_TRAP" (0x00000004) error, a critical BSOD. It explores common causes like faulty drivers, hardware malfunctions (RAM, hard drive), software conflicts, overclocking, and malware. Trou

ENE SYS Maintenance: Tips and Tricks to Keep Your System Running SmoothlyENE SYS Maintenance: Tips and Tricks to Keep Your System Running SmoothlyMar 07, 2025 pm 03:09 PM

This article provides practical tips for maintaining ENE SYS systems. It addresses common issues like overheating and data corruption, offering preventative measures such as regular cleaning, backups, and software updates. A tailored maintenance s

How do I edit the Registry? (Warning: Use with caution!)How do I edit the Registry? (Warning: Use with caution!)Mar 21, 2025 pm 07:46 PM

Article discusses editing Windows Registry, precautions, backup methods, and potential issues from incorrect edits. Main issue: risks of system instability and data loss from improper changes.

How do I manage services in Windows?How do I manage services in Windows?Mar 21, 2025 pm 07:52 PM

Article discusses managing Windows services for system health, including starting, stopping, restarting services, and best practices for stability.

Discover How to Fix Drive Health Warning in Windows SettingsDiscover How to Fix Drive Health Warning in Windows SettingsMar 19, 2025 am 11:10 AM

What does the drive health warning in Windows Settings mean and what should you do when you receive the disk warning? Read this php.cn tutorial to get step-by-step instructions to cope with this situation.

5 Common Mistakes to Avoid During ENE SYS Implementation5 Common Mistakes to Avoid During ENE SYS ImplementationMar 07, 2025 pm 03:11 PM

This article identifies five common pitfalls in ENE SYS implementation: insufficient planning, inadequate user training, improper data migration, neglecting security, and insufficient testing. These errors can lead to project delays, system failures

which application uses ene.syswhich application uses ene.sysMar 12, 2025 pm 01:25 PM

This article identifies ene.sys as a Realtek High Definition Audio driver component. It details its function in managing audio hardware, emphasizing its crucial role in audio functionality. The article also guides users on verifying its legitimacy

why won't driver asio.sys loadwhy won't driver asio.sys loadMar 10, 2025 pm 07:58 PM

This article addresses the failure of the Windows asio.sys audio driver. Common causes include corrupted system files, hardware/driver incompatibility, software conflicts, registry issues, and malware. Troubleshooting involves SFC scans, driver upda

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.