I have downloaded a database image (The ANSI compatible version) of a MySQL database from this site. I tried running the sql statements on MySQL Workbench 5.7:
USE ergast_f1;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE "circuits" (
"circuitId" int(11) NOT NULL AUTO_INCREMENT,
"circuitRef" varchar(255) NOT NULL DEFAULT '',
"name" varchar(255) NOT NULL DEFAULT '',
"location" varchar(255) DEFAULT NULL,
"country" varchar(255) DEFAULT NULL,
"lat" float DEFAULT NULL,
"lng" float DEFAULT NULL,
"alt" int(11) DEFAULT NULL,
"url" varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY ("circuitId"),
UNIQUE KEY "url" ("url")
);
I am unable to run the above statements as long as there is usage of double quotation-marks(I have already successfully created the ergast_f1
database). Is there any way I can run the above statements without removing the double-quotation marks?, As there are more than hundreds of thousands of statements beyond the one above.
Thank you.