Showing posts with label SQL Statement CREATE TABLE. Show all posts
Showing posts with label SQL Statement CREATE TABLE. Show all posts

Friday, 21 March 2014

CREATE TABLE

CREATE TABLE :

CREATE TABLE table_name
(
column_name1 data_type,
column_name2 data_type,
column_name2 data_type,
...
)