0% found this document useful (0 votes)
18 views

Additional Practices: Table Descriptions and Data

The document describes the structure of several tables in an Oracle database including countries, departments, employees, jobs, job_grades, job_history, and locations, with descriptions of each table provided alongside example SELECT statements to view the data in each table.

Uploaded by

sudheermuppa
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views

Additional Practices: Table Descriptions and Data

The document describes the structure of several tables in an Oracle database including countries, departments, employees, jobs, job_grades, job_history, and locations, with descriptions of each table provided alongside example SELECT statements to view the data in each table.

Uploaded by

sudheermuppa
Copyright
© Attribution Non-Commercial (BY-NC)
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 Additional Practices Tables - 2

DEPARTMENTS Table DESCRIBE departments

SELECT * FROM departments;

Oracle Database 10g: SQL Fundamentals I Additional Practices Tables - 3

EMPLOYEES Table DESCRIBE employees

SELECT * FROM employees;

Oracle Database 10g: SQL Fundamentals I Additional Practices Tables - 4

EMPLOYEES Table (continued)

Oracle Database 10g: SQL Fundamentals I Additional Practices Tables - 5

JOBS Table DESCRIBE jobs

SELECT * FROM jobs;

Oracle Database 10g: SQL Fundamentals I Additional Practices Tables - 6

JOB_GRADES Table DESCRIBE job_grades

SELECT * FROM job_grades;

Oracle Database 10g: SQL Fundamentals I Additional Practices Tables - 7

JOB_HISTORY Table DESCRIBE job_history

SELECT * FROM job_history;

Oracle Database 10g: SQL Fundamentals I Additional Practices Tables - 8

LOCATIONS Table DESCRIBE locations

SELECT * FROM locations;

Oracle Database 10g: SQL Fundamentals I Additional Practices Tables - 9

You might also like