Skip to content

Instantly share code, notes, and snippets.

@prashantkumarabhishek
Created March 14, 2019 14:52
Show Gist options
  • Save prashantkumarabhishek/35f88dc89f75db5071fc7a98e91b1439 to your computer and use it in GitHub Desktop.
Save prashantkumarabhishek/35f88dc89f75db5071fc7a98e91b1439 to your computer and use it in GitHub Desktop.
Insert Data in Users Table
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