-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated test cases for correct mysql
- Loading branch information
Showing
166 changed files
with
1,492 additions
and
1,225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
CREATE TABLE "Student" ( | ||
"ID" INTEGER, | ||
"Name" VARCHAR(15) | ||
USE test; | ||
DROP TABLE IF EXISTS test.Student; | ||
CREATE TABLE Student ( | ||
ID INTEGER, | ||
Name VARCHAR(15) | ||
); | ||
INSERT INTO "Student" ("ID", "Name") VALUES(10,'Venus'); | ||
INSERT INTO Student (ID, Name) VALUES(10,'Venus'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
CREATE TABLE "Student" ( | ||
"ID" INTEGER, | ||
"Name" VARCHAR(15) | ||
USE test; | ||
DROP TABLE IF EXISTS test.Student; | ||
CREATE TABLE Student ( | ||
ID INTEGER, | ||
Name VARCHAR(15) | ||
); | ||
INSERT INTO "Student" ("ID", "Name") VALUES(10,'Venus'); | ||
INSERT INTO Student (ID, Name) VALUES(10,'Venus'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
CREATE TABLE "Student" ( | ||
"ID" INTEGER, | ||
"Name" VARCHAR(15) | ||
USE test; | ||
DROP TABLE IF EXISTS test.Student; | ||
CREATE TABLE Student ( | ||
ID INTEGER, | ||
Name VARCHAR(15) | ||
); | ||
INSERT INTO "Student" ("ID", "Name") VALUES(10,'Venus'); | ||
INSERT INTO Student (ID, Name) VALUES(10,'Venus'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
CREATE TABLE "IOUs" ( | ||
"fname" VARCHAR(20), | ||
"lname" VARCHAR(20), | ||
"amount" FLOAT); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Bob', 'Smith', 30); | ||
|
||
USE test; | ||
DROP TABLE IF EXISTS test.IOUs; | ||
CREATE TABLE IOUs ( | ||
fname VARCHAR(20), | ||
lname VARCHAR(20), | ||
amount FLOAT); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
CREATE TABLE "IOUs" ( | ||
"fname" VARCHAR(20), | ||
"lname" VARCHAR(20), | ||
"amount" FLOAT); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Bob', 'Smith', 30); | ||
|
||
USE test; | ||
DROP TABLE IF EXISTS test.IOUs; | ||
CREATE TABLE IOUs ( | ||
fname VARCHAR(20), | ||
lname VARCHAR(20), | ||
amount FLOAT); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
CREATE TABLE "IOUs" ( | ||
"fname" VARCHAR(20), | ||
"lname" VARCHAR(20), | ||
"amount" FLOAT); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Bob', 'Smith', 30); | ||
|
||
USE test; | ||
DROP TABLE IF EXISTS test.IOUs; | ||
CREATE TABLE IOUs ( | ||
fname VARCHAR(20), | ||
lname VARCHAR(20), | ||
amount FLOAT); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
CREATE TABLE "IOUs" ( | ||
"fname" VARCHAR(20), | ||
"lname" VARCHAR(20), | ||
"amount" FLOAT); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO "IOUs" ("fname", "lname", "amount") VALUES ('Bob', 'Smith', 30); | ||
USE test; | ||
DROP TABLE IF EXISTS test.IOUs; | ||
CREATE TABLE IOUs ( | ||
fname VARCHAR(20), | ||
lname VARCHAR(20), | ||
amount FLOAT); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Sue', 'Jones', 20); | ||
INSERT INTO IOUs (fname, lname, amount) VALUES ('Bob', 'Smith', 30); |
Oops, something went wrong.