CREATE TABLE


CREATE TABLE

CREATE TABLE is used to create new database tables. To update the schema of an existing table, use ALTER TABLE. See Chapter 21 for more information.

Input

CREATE TABLE tablename (        column    datatype    [NULL|NOT NULL]    [CONSTRAINTS],        column    datatype    [NULL|NOT NULL]    [CONSTRAINTS],        ... );




MySQL Crash Course
MySQL Crash Course
ISBN: 0672327120
EAN: 2147483647
Year: 2004
Pages: 214
Authors: Ben Forta

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net