🏠
- Visit my site for more PHP tutorials https://www.prashantabhishek.com/blog/category/tutorials/
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 `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'); |
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`); |