the following create table statement creates a table called 'user' that consists of the user id as the primary key, the username, and the password. create table user user id int primary key, username varchar (50), password varchar (50) ); identify the line of code that would generate an error in this create table statement.