Created
March 14, 2019 14:52
-
-
Save prashantkumarabhishek/35f88dc89f75db5071fc7a98e91b1439 to your computer and use it in GitHub Desktop.
Insert Data in Users Table
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 characters
INSERT INTO `Users` (`uid`, `Name`, `City`, `State`, `Country`) VALUES | |
(1, 'Prashant', 'Jaipur', 'Rajasthan', 'India'), | |
(2, 'Abhishek', 'Delhi', 'Delhi', 'India'), | |
(3, 'Ashwani Bhatt', 'Jaipur', 'Rajasthan', 'India'), | |
(4, 'Harsh Gupta', 'Howrah', 'West Bengal', 'India'), | |
(5, 'Vivek', 'Jaipur', 'Rajasthan', 'India'), | |
(6, 'Nidz', 'Gurgaon', 'Haryana', 'India'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment