Setting up your Oracle Autonomous DB

In this video we will see how to create an Oracle Cloud Account and create an Autonomous Database

URL to Sign Up
content_copy
https://signup.cloud.oracle.com
SQL Statements
content_copy
create table author(
  author_id int primary key,
  first_name varchar(50),
  last_name varchar(50)
);

insert into author values(100,'Theodor', 'Geisel');
insert into author values(101,'Harriet', 'Stowe');
insert into author values(102,'Jane', 'Austen');


select * from author;