What is the equivalent of MSSQL IDENTITY Columns in MySQL? How would I create this table in MySQL?
IDENTITY
CREATE TABLE Lookups.Gender ( GenderID
CREATE TABLE Lookups.Gender ( GenderID INT NOT NULL AUTO_INCREMENT, GenderName VARCHAR(32) NOT NULL );