CREATE TABLE Statement in SQL- Tutorial and Syntax
Wednesday, October 22 2014
The CREATE TABLE Statement in SQL: Overview One of the most commonly used SQL statements when creating a database is the CREATE TABLE statement, which is used to create tables within a database. The general syntax of the CREATE TABLE statement is shown below. CREATE TABLE table_name ( field_name data_type(size), field_name1 data_type(size), field_name2 data_type(size),
No Comments