0% found this document useful (0 votes)
19 views9 pages

Additional Practices: Table Descriptions and Data

The document describes the structure and contents of multiple database tables including countries, departments, employees, jobs, job grades, job history, and locations by listing the DESCRIBE and SELECT statements for each table.

Uploaded by

Ani Ani
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views9 pages

Additional Practices: Table Descriptions and Data

The document describes the structure and contents of multiple database tables including countries, departments, employees, jobs, job grades, job history, and locations by listing the DESCRIBE and SELECT statements for each table.

Uploaded by

Ani Ani
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 9

Additional

Practices

Table Descriptions and Data


COUNTRIES Table

DESCRIBE countries

SELECT * FROM countries;

Oracle Database 10g: SQL Fundamentals I AP Tables-2


DEPARTMENTS Table

DESCRIBE departments

SELECT * FROM departments;

Oracle Database 10g: SQL Fundamentals I AP Tables-3


EMPLOYEES Table
DESCRIBE employees

SELECT * FROM employees;

Oracle Database 10g: SQL Fundamentals I AP Tables-4


EMPLOYEES Table (continued)

Oracle Database 10g: SQL Fundamentals I AP Tables-5


JOBS Table

DESCRIBE jobs

SELECT * FROM jobs;

Oracle Database 10g: SQL Fundamentals I AP Tables-6


JOB_GRADES Table

DESCRIBE job_grades

SELECT * FROM job_grades;

Oracle Database 10g: SQL Fundamentals I AP Tables-7


JOB_HISTORY Table

DESCRIBE job_history

SELECT * FROM job_history;

Oracle Database 10g: SQL Fundamentals I AP Tables-8


LOCATIONS Table

DESCRIBE locations

SELECT * FROM locations;

Oracle Database 10g: SQL Fundamentals I AP Tables-9

You might also like