500
There is an error. It is on line?
1. mysql> create table tblAgents(
2. -> ID int not null auto_increment,
3. -> Name varchar(16),
4. -> CodeName varchar(16),
5. -> Location varchar(16)
6. -> Assignment varchar(16),
7. -> Primary key(ID)
8. -> );
What is Line 5. The error is a missing comma.