Skip to content

Instantly share code, notes, and snippets.

View omprakash201194's full-sized avatar

Omprakash Gautam omprakash201194

  • Pune
View GitHub Profile
@omprakash201194
omprakash201194 / Oracle SQL Commands.md
Last active December 19, 2020 07:15
Oracle SQL Commands A Beginner’s Tutorial

Create Table

CREATE TABLE table
(column_1 data_type_1,
column_2 data_type_2,
...
PRIMARY KEY (columns)
); 

Example