I have this table, which worked perfectly fine in sql developer, but when I wanted to import it to the MySQL database this is what happend:
CREATE TABLE zem(
ID_zem INTEGER,
nazov VARCHAR2(30),
kontinent VARCHAR2(30),
CONSTRAINT pk_zem PRIMARY KEY (ID_zem)
);
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARCHAR2(30), kontinent VARCHAR2(30),
CONSTRAINT pk_zem PRIMARY KEY (ID_zem' at line 3
oracletag.