CREATE TABLE test (
id TINYINT NOT NULL AUTO_INCREMENT,
TEXT VARCHAR(128),
UNIQUE ID (id),
PRIMARY KEY(id)
);
Bez wrote:
Can someone give me the mysql command to create a table that has an auto incremented value field and another field with some text in it like a varchar one?