Sql Create Table Statement
Syntax Example Results The CREATE TABLE statement used in this example created a table with three columns. The first column is used to store integer data. The second column stores string data (of type varchar) up to 255 characters and the third column is used to store date/time information. After the table has been created, you can use other SQL statements, such as INSERT INTO to populate data into this table....