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

Add Prac Tables

The document describes the structure of 8 tables in an Oracle database - countries, departments, employees, jobs, job_grades, job_history, locations. For each table, it lists the DESCRIBE and SELECT commands to show the column definitions and sample data.

Uploaded by

RASHMI_HR
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)
26 views

Add Prac Tables

The document describes the structure of 8 tables in an Oracle database - countries, departments, employees, jobs, job_grades, job_history, locations. For each table, it lists the DESCRIBE and SELECT commands to show the column definitions and sample data.

Uploaded by

RASHMI_HR
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 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