MySQL :: Re: Error 1050 table already exist
https://forums.mysql.com/read.php?10,315385,31909801.02.2010 · ## You presented: mysql> create table product -> ( productid int unsigned not null auto_increment primary key, -> make char(50) not null, -> model char(50) not null, -> cpu char(100) not null, -> price float(4,2) -> ); Query OK, 0 rows affected (0.20 sec) ## But I think the file had this: mysql> create table product3 -> ( productid int unsigned not null auto_increment primary key, -> …