Last active
August 29, 2015 14:20
-
-
Save faizalmansor/aaaf30d179fe7ec71f3f to your computer and use it in GitHub Desktop.
Yii 2.0 - Working with Databases demo table seed
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
INSERT INTO `country` VALUES ('AU','Australia',18886000); | |
INSERT INTO `country` VALUES ('BR','Brazil',170115000); | |
INSERT INTO `country` VALUES ('CA','Canada',1147000); | |
INSERT INTO `country` VALUES ('CN','China',1277558000); | |
INSERT INTO `country` VALUES ('DE','Germany',82164700); | |
INSERT INTO `country` VALUES ('FR','France',59225700); | |
INSERT INTO `country` VALUES ('GB','United Kingdom',59623400); | |
INSERT INTO `country` VALUES ('IN','India',1013662000); | |
INSERT INTO `country` VALUES ('RU','Russia',146934000); | |
INSERT INTO `country` VALUES ('US','United States',278357000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment