Skip to content

Instantly share code, notes, and snippets.

@prashantkumarabhishek
Created March 14, 2019 14:37
Show Gist options
  • Save prashantkumarabhishek/b1f42acba83ef19d59bc6b866f2fe5f5 to your computer and use it in GitHub Desktop.
Save prashantkumarabhishek/b1f42acba83ef19d59bc6b866f2fe5f5 to your computer and use it in GitHub Desktop.
 CREATE TABLE `users` (
  `uid` int(11) NOT NULL,
  `Name` text NOT NULL,
  `City` text NOT NULL,
  `State` text NOT NULL,
  `Country` text NOT NULL
  ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  ALTER TABLE `Users`
  ADD PRIMARY KEY (`uid`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment