SQL provides an organized way for table creation.
Syntax: Create table TableName (columnName1 datatype, columnName2 datatype )
The following is an example of creating a simple table-
create table Info (Name varchar(20), BirthDate date,Phone nvarchar(12), City varchar(20))