I have exported a PhpMyAdmin database. When I open the document that I generated when exporting with Microsoft SQL Server Management Studio , it shows me the queries of all the tables and data in the database (so far). Since some of the instructions do not seem compatible between PhpMyAdmin and SSMS . I have had to modify them and execute them by hand and most of them have been executed well, but when I have to indicate the fields AUTO-INCREMENT
I get an error.
For example when executing the instruction:
ALTER TABLE categories
MODIFY Cat_Id int(8) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
I get the error:
Msg 102, Level 15, State 1, Line 1306 Incorrect syntax near 'MODIFY'.
How to solve this error?