i want to create a table with auto number increment for my ID column. can anyone help mi??
code: CREATE TABLE id( id.....)
what should i write after that??
CREATE TABLE ID ( ID TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY ); --Shastry
ID