Last active
April 17, 2016 00:23
-
-
Save vishalkurup/5382389 to your computer and use it in GitHub Desktop.
Revisions
-
vishalkurup revised this gist
Apr 14, 2013 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -13,10 +13,10 @@ INSERT INTO cities(cityName, cityState, cityPopulation, country) VALUE ('London', 'London', 8173194, 'United Kingdom'); INSERT INTO cities(cityName, cityState, cityPopulation, country) VALUE ('Bombay', 'Maharashtra', 12478447, 'India'); INSERT INTO cities(cityName, cityState, cityPopulation, country) VALUE ('Kuala Lumpur', 'Federal Territory', 1627172, 'Malaysia'); INSERT INTO cities(cityName, cityState, cityPopulation, country) VALUE ('New York', 'New York', 8336697, 'United States'); -
vishalkurup renamed this gist
Apr 14, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
vishalkurup revised this gist
Apr 14, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ -- create table CREATE TABLE cities ( id INT PRIMARY KEY NOT NULL auto_increment, cityName VARCHAR(255), cityState VARCHAR(255), cityPopulation int, -
vishalkurup created this gist
Apr 14, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ -- create table CREATE TABLE cities ( id INT PRIMARY KEY NOT NULL auto_increment, cityName VARCHAR(255), cityState VARCHAR(255), cityPopulation int, country VARCHAR(255) ); -- Insert data into our table INSERT INTO cities(cityName, cityState, cityPopulation, country) VALUE ('London', 'London', 8173194, 'United Kingdom'); INSERT INTO cities(cityName, cityState, cityPopulation, country) VALUE ('Bombay', 'Maharashtra', 12478447, 'United Kingdom'); INSERT INTO cities(cityName, cityState, cityPopulation, country) VALUE ('Kuala Lumpur', 'Federal Territory', 1627172, 'United Kingdom'); INSERT INTO cities(cityName, cityState, cityPopulation, country) VALUE ('New York', 'New York', 8336697, 'United States'); INSERT INTO cities(cityName, cityState, cityPopulation, country) VALUE ('Berlin', 'Berlin', 3538652, 'Deutschland');