I have a Query I want to run to create a Table users but when executing the query I get this error: Started executing query at Line 1
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near ''.
Total execution time: 00:00:00.031`
This is my Query:
CREATE TABLE `users` (
`id` int(8) unsigned NOT NULL AUTO_INCREMENT,
`login` varchar(30) NOT NULL,
`password` varchar(32) NOT NULL,
`secret` varchar(16) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `login` (`login`)
);
Could anyone let me know why I get this error when running my Query?
mysqlorsql-server? Did you even know there is a difference?sql serverormysqlRDBMS, witch you are using?Msg 102, Level 15, State 1, Line 1is a SQL-server error message.. MySQL syntax on a SQL-server does not work.