Question: Log onto Oracle Live SQL . Create the following tables with script Lab 0 1 . sql I provided for you. Insert these 2 0

Log onto Oracle Live SQL.
Create the following tables with script Lab01.sql I provided for you.
Insert these 20 records (as shown in the following tables) into the corresponding tables. Each
record is created with one INSERT INTO statement.
All these statements should be tested individually and saved together in one file Lab03.sql.
Customers (CustomerID is PK)
Employees (EmployeeID is PK)
Categories (CategoryID is PK)
Products (ProductID is PK)
CustomerID int PRIMARY KEY,
Customername varchar2(255),
Address varchar2(255),
City varchar2(255),
Postalcode varchar2(255),
;
Country varchar2(255)
CREATE TABLE Employees
(
EmployeeID int PRIMARY KEY,
LastName varchar2(255),
FirstName varchar2(255),
;
BirthDate DATE
CREATE TABLE Categories
(
CategoryID int PRIMARY KEY,
CategoryName varchar2(255),
;
CREATE TABLE Products
OrderDetails (no PK is assigned)
ProductID int PRIMARY KEY,
ProductName varchar2(255),
CategoryID int,
Unit varchar2(255),
Price int
;
CREATE TABLE orders
(
OrderID int PRIMARY KEY,
CustomerID int,
EmployeeID int,
OrderDate Date
CREATE TABLE orderDetails
OrderID int,
ProductID int,
Quantity int
;
 Log onto Oracle Live SQL. Create the following tables with script

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!