Normal
Ex:CREATE-TABLE `card` ( `idCard` int(11) NOT NULL auto_increment, #^^^^^^ This is an autoincrement column `devicePath` varchar(2000) NOT NULL,<snip>) ENGINE=MyISAM AUTO_INCREMENT=5; #^^^^^^ This specifies the inital value for the autoinc columnIntentionally spelling wrong since some SQL commands are not allowed in posts.
Ex:
CREATE-TABLE `card` (
`idCard` int(11) NOT NULL auto_increment,
#^^^^^^ This is an autoincrement column
`devicePath` varchar(2000) NOT NULL,
<snip>
) ENGINE=MyISAM AUTO_INCREMENT=5;
#^^^^^^ This specifies the inital value for the autoinc column
Intentionally spelling wrong since some SQL commands are not allowed in posts.