I have SQL CREATE statements for MySQL. They have KEY.
Example :
CREATE TABLE a (
a varchar(25) NOT NULL DEFAULT '',
b varchar(20) NOT NULL DEFAULT '',
KEY location (a)
);
What is the CREATE statement for this table in MSSQL ? The KEY keyword does cause problem.
…change db and schema names