docs:mysql:create_table

This is an old revision of the document!


CREATE TABLE

CREATE TABLE tablename
(
  column  datatype  [NULL|NOT NULL]  [CONSTRAINTS],
  column  datatype  [NULL|NOT NULL]  [CONSTRAINTS],
  ...
);
  • CREATE TABLE mytable SELECT * FROM myothertable WHERE somefield = NULL
  • docs/mysql/create_table.1186067733.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)