SQLs
Creating A Table
Syntax
CREATE TABLE <table_name>
(
    Id char(10) PRIMARY KEY,
    ColA char(10) NOT NULL
    ...
);
Importance of creating a table
- every column is either 
NULLorNOT NULL - An error will be returned if one tries to submit a column with no value
 - Primary key cannot be 
NULL 
Adding Data to the Table
Insert Statement
INSERT INTO <table_name>
VALUES ('1234556', '','');
- With this type of statement, you do not have a guarantee of what data is going into whichi column.
 Recomendedto specify columns like below
INSERT INTO <table_name>
( 
    Id,
    colA,
)
VALUES 
(
    '123456',
    'DATA A'
)