Created
March 14, 2019 14:37
-
-
Save prashantkumarabhishek/b1f42acba83ef19d59bc6b866f2fe5f5 to your computer and use it in GitHub Desktop.
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
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