Guide to Oracle SQL (University at Buffalo Version)
Maintaining a Database using SQL Statements
Oracle uses the Structured Query Language (SQL) to create and maintain the database and tables. SQL [rovides statements that allow database administrators and users to perform create, read, update, and delete (CRUD) operations on a database. SQL is broken down into four (4) areas: a data query language (DQL), a data definition language (DDL), a data control language (DCL), and a data manipulation language (DML). SQL statements are not case-sensitive. I almost always try to upper case my SQL statements just for readability. I also try to use camel-case fo my database, table, and field names. For example, employeeTable
and firstName
.
To use Oracle on your local machine, you need to download Oracle Database Express 18c page. After you install 18c, then you can download and install SQL Developer.
If you are using SQL Developer, then right-click on your connection in the SQL developer Connections window. To create a new connection, click the "plus-sign" icon in the "Oracle Connections" pane. Then, you may have to change the connect type from "Basic" to "TNS".
Then choose Open SQL Worksheet. This is where you can enter SQL statements.
The CREATE
Statement
The SQL CREATE
statement can be used to create a new database or a new table within an existing database if you have permissions that allow you to create a new database.
The CREATE DATABASE
Statement
The SQL CREATE DATABASE databaseName
statement can be used to create a new database.
The CREATE TABLE
Statement
The SQL CREATE TABLE tableName
statement can be used to create a new table within an existing database.
The DROP TABLE
Statement
The SQL DROP TABLE tableName
statement can be used to delete a within an existing database.
The DESCRIBE
Statement
In SQL Developer pressing the SHIFT-F4 key displays the table structure.
The INSERT
Statement
The INSERT
statement is used to add a record to a table. String (VARCHAR2) values should be enclosed in single quotes (''). In SQL Developer, if you are entering multiple statements you need to highlight all the statements before clicking the run icon ().
In SQL Developer, click the Commit () icon to apply the results of your INSERT
query to your database.
The SELECT
Statement
The SELECT
statement is used to retreive information from the database.
Using the SELECT
Statement To Retreive Records
The asterisk (*)
is used as a wildcard. It is used to retreive all the fields in the table.
If you click the run script icon () in SQL developer you get a different type of output.
Using the SELECT
Statement To Retrieve Certain Fields
You can also name the fields you would like return using the SELECT field[s]
statement.
The UPDATE
Statement
The UPDATE
statement can be used to modify an existing record in a table.
The DELETE
Statement
The DELETE
statement can be used to remove an existing record from a table.
The TRUNCATE
Statement
The TRUNCATE
statement is used to remove all the records in a table but keep the strucure (fields) of the table intact.
SQL Comments
It is important to comment your SQL code. This helps you when you need to go back and modify your code and it helps other devlopers who will need to maintain you code after you move on to new, more challenging projects. SQL provides two (2) types of comments. single line comments (--) and multiple line comments (/* */).
Task - Create, Populate, and Display an employees Table
Requirements
- Open SQL Developer
- Connect to your database instance
- Open a new SQL editor window
- Enter code to CREATE an "employees" table with these fields:
employee_id NUMBER NOT NULL, first_name VARCHAR2(20),
last_name VARCHAR2(25), email VARCHAR2(25), phone_number VARCHAR2(20),
hire_date DATE, job_id VARCHAR2(10), salary NUMBER(8,2), commission_pct NUMBER(8,2), and
department_id NUMBER(3) with employee_id as the PRIMARY KEY - INSERT these records into the "employees" table:
- 176, Sarah, Hall, sarah.hall@oca.com, 7165551231, to_date('10-SEP-2009', 'DD-MON-YYYY'), 125000, SA_MAN, 80
- 102, Allison, Felix, Allsion.felix@oca.com, 7165551232, to_date('10-OCT-2008', 'DD-MON-YYYY'), 45000, IT_PROG, 60
- 201, LoLo, Jones, lolo.jones@oca.com, 7165551234, to_date('10-SEP-2012','DD-MON-YYYY'), 55000, MK_REP, 20
- 200, Steve, Scott, steve.scott@oca.com, 7165551235, to_date('10-MAR-2011','DD-MON-YYYY'), 55000, AD_ASST, 90
- 202, Charlie, Wertz, charlie.wertz@oca.com, 7165551236, to_date('01-SEP-1989','DD-MON-YYYY'), 555000, SA_MAN, 80
- Display the employees table date (use SELECT).
- Save your SQL query script as "create_employees.sql".
When you have this Assignment ready for me to view and grade, you should click on this assignment and then choose "Add a File" and upload your create_employees.sql file, so I can download it and grade your work.