F How to create Table using SQL Statement | CodeTheta

How to create Table using SQL Statement

April 12, 2020

Syntax : 
CREATE TABLE Students (
    StudentID int,
    Firstname varchar(255),
    Lastname varchar(255),
    Phone varchar(255),
    Country varchar(255)
);

Students is the table name.

IDE Used To Test This Code : Microsoft SQL Server 2014.

Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us.We will reply you as soon as possible.

Post a Comment