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