Help for this page

Select Code to Download


  1. or download this
    CREATE TABLE messages(
      msg_id    INT         NOT NULL PRIMARY KEY AUTO_INCREMENT,
    ...
      user      VARCHAR(30) NOT NULL PRIMARY KEY,
      # etc, etc.
    );
    
  2. or download this
    INSERT INTO messages VALUES(
      '',-1,'NR','Coruscate','perleager',NOW(),'hello there!'
    );
    
  3. or download this
    INSERT INTO messages VALUES(
      '',10932,'NR','perleager','Coruscate',NOW(),'hello back!'
    );