Advertisement
Guest User

Populate Alcohols

a guest
Feb 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.74 KB | None | 0 0
  1. INSERT INTO cs421g34.alcohols (aid,name,abv,atype,volume,price) VALUES
  2. (1, 'Absolut', 40, 'vodka', 775, 89.99),
  3. (2, 'Grey Goose Vanilla', 40, 'vodka', 1000,109.99),
  4. (3, 'Chopin', 40, 'vodka', 900, 59.99),
  5. (4, 'Ciroc Orange', 40, 'vodka', 775, 79.99),
  6. (5, 'Ciroc Dank', 40, 'vodka', 775, 189.99),
  7. (6, 'Johnnie Walker Blue', 40, 'whiskey', 775, 189.99),
  8. (7, 'Johnnie Walker Red', 40, 'whiskey', 885, 59.99),
  9. (8, 'Makers Mark', 40, 'whiskey', 793, 59.99),
  10. (9, 'Jameson', 40, 'whiskey', 1400, 69.99),
  11. (10, 'Don Julio', 40, 'tequila', 900, 88.99),
  12. (11, 'Jose Cuervo', 40, 'tequila', 775, 109.99),
  13. (12, 'Don Julio', 40, 'tequila', 775, 129.99),
  14. (13, '1800 Tequila', 40, 'tequila', 775, 119.99),
  15. (14, 'Tres Agave', 40, 'tequila', 775, 159.99);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement