Skip to content

Instantly share code, notes, and snippets.

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/ed9a468d4919192498b4f09c28f885da to your computer and use it in GitHub Desktop.
Save itswadesh/ed9a468d4919192498b4f09c28f885da to your computer and use it in GitHub Desktop.
sql: books
--
-- 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