Here is the mysql code. I can't find the error here. when I execute this bunch of code it shows syntax error.
CREATE TABLE Movie(
-> title varchar(100),
-> year int,
-> length int,
-> inColor BIT(1),
-> studioName varchar(50),
-> producerC# int,
-> PRIMARY KEY ('title'));
titlecolumn should not be between single quotes.#from the columnproducerC#, it's a non standard character and may cause problems further down the line.