Forum Moderators: mack
CREATE TABLE newsitem(
item_id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT,
title VARCHAR(200) NOT NULL,
message TEXT NOT NULL,
posted TIMESTAMP,
PRIMARY KEY(item_id)
);
keep getting problems with it i've tried all kinds of iterations of this code but can't seem to get it to work. Does anyone hold an answer or know of really good mysql table creation tutorials.
p.s. in mysql how do i run a saved query?
i knows @filename.sql; but where do i store the sql file 'coz the mysql client can never find it.