Help for this page

Select Code to Download


  1. or download this
    CREATE TABLE foo (
      id int unsigned primary key,
      name varchar(255)
    )
    
  2. or download this
    CREATE TABLE foo (
      id int unsigned primary key,
      name varchar(255),
      status tinyint unsigned
    )
    
  3. or download this
    ALTER TABLE foo ADD status tinyint unsigned