"metaData":"{\n \"mysql\": [\n \"Create table If Not Exists Employees (id int, name varchar(20))\",\n \"Create table If Not Exists EmployeeUNI (id int, unique_id int)\"\n ],\n \"mssql\": [\n \"Create table Employees (id int, name varchar(20))\",\n \"Create table EmployeeUNI (id int, unique_id int)\"\n ],\n \"oraclesql\": [\n \"Create table Employees (id int, name varchar(20))\",\n \"Create table EmployeeUNI (id int, unique_id int)\"\n ],\n \"database\": true\n}",
"judgerAvailable":true,
"judgeType":"large",
"mysqlSchemas":[
"Create table If Not Exists Employees (id int, name varchar(20))",
"Create table If Not Exists EmployeeUNI (id int, unique_id int)",
"Truncate table Employees",
"insert into Employees (id, name) values ('1', 'Alice')",
"insert into Employees (id, name) values ('7', 'Bob')",
"insert into Employees (id, name) values ('11', 'Meir')",
"insert into Employees (id, name) values ('90', 'Winston')",
"insert into Employees (id, name) values ('3', 'Jonathan')",
"Truncate table EmployeeUNI",
"insert into EmployeeUNI (id, unique_id) values ('3', '1')",
"insert into EmployeeUNI (id, unique_id) values ('11', '2')",
"insert into EmployeeUNI (id, unique_id) values ('90', '3')"