the following create table statement creates a table called 'album' that consists of the album id as the primary key, the title, and the artist id. create table album( album id int primary key title varchar (160), artist id int ); identify the missing item that would generate an error in this create table statement.