i have a 3rd party software and i exported the database structure so that i can import it on another computer. i guess a few tables have multiple primary keys but how can i import the tables witout mysql stopping the import because it has detected multi primary keys?
this is the error i get:
1068 - Multiple primary key defined
i have defined this into the sql file.
SET FOREIGN_KEY_CHECKS=0;
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
and the import still stops on import when it detects multi primary keys.
is there anything else i can do??
thanks