Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Oct 14th, 2009  |  syntax: MySQL  |  size: 0.22 KB  |  hits: 196  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. CREATE TABLE `ezcomponents`.`Persons` (
  2. `ID` INT NOT NULL ,
  3. `Firstname` TEXT NOT NULL ,
  4. `Lastname` TEXT NOT NULL ,
  5. `Gender` INT NOT NULL DEFAULT '0' COMMENT '0 = male, 1 = female',
  6. PRIMARY KEY ( `ID` )
  7. ) ENGINE = MYISAM