Skip to content

Instantly share code, notes, and snippets.

@itswadesh
Created March 27, 2017 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itswadesh/77fed995324767611475c1eedc6bf446 to your computer and use it in GitHub Desktop.
Save itswadesh/77fed995324767611475c1eedc6bf446 to your computer and use it in GitHub Desktop.
--
-- Table structure for table `books`
--
CREATE TABLE IF NOT EXISTS `books` (
`name` varchar(255) DEFAULT NULL,
`author` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `books`
--
INSERT INTO `books` (`name`,`author`) VALUES
('What young India wants', 'Chetan Bhagat'),
('Two States', 'Chetan Bhagat'),
('The hunger games', 'Suzanne Collions'),
('The 3 mistakes of my life', ' Chetan Bhagat'),
('Serious Men', ' Manu Joseph'),
('Revolution 2020', ' Chetan Bhagat'),
('God"s Little Soldier', 'Kiran Nagarkar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment