The following example creates a table called "Persons" that contains five columns: PersonID, LastName, FirstName, Address, and City:
 

CREATE TABLE Persons (
    PersonID int,
    LastName varchar(255),
    FirstName varchar(255),
    Address varchar(255),
    City varchar(255)
);
The PersonID column is of type int and will hold an integer.

The LastName, FirstName, Address, and City columns are of type varchar and will hold characters, and the maximum length for these fields is 255 characters.

The empty "Persons" table will now look like this:
PersonID LastName FirstName Address City
         


The empty "Persons" table can now be filled with data with the SQL INSERT INTO statement.



Practice Excercise Practice now