Advertisement
ahmadtri26

table_product_etalase

Nov 15th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.0.9
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Nov 15, 2017 at 07:43 AM
  7. -- Server version: 5.6.14
  8. -- PHP Version: 5.5.6
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- Database: `scring`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Table structure for table `product_etalase`
  21. --
  22.  
  23. CREATE TABLE IF NOT EXISTS `product_etalase` (
  24. `id` int(100) NOT NULL AUTO_INCREMENT,
  25. `name` varchar(30) NOT NULL,
  26. `category` varchar(30) NOT NULL,
  27. `price` varchar(30) DEFAULT NULL,
  28. PRIMARY KEY (`id`)
  29. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=38 ;
  30.  
  31. --
  32. -- Dumping data for table `product_etalase`
  33. --
  34.  
  35. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(2, 'cats', 'Pet', '2500');
  36. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(4, 'Biscuit', 'Snack', '80000000');
  37. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(7, 'Plastic Model', 'Toy', '9000');
  38. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(18, 'TV', 'electronic', '230198');
  39. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(19, 'tamiya', 'toy', '13123');
  40. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(20, 'candy', 'snack', '190238');
  41. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(24, 'Bread', 'Food', '120');
  42. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(31, 'car', 'vehicle', '90000');
  43. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(32, 'tamiya', 'toy', '123123');
  44. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(33, 'calculator', 'electronic', '18');
  45. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(34, 'lalala', 'music', '90');
  46. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(35, 'laptop', 'electronic', '189098');
  47. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(36, 'Personal Computer', 'electronic', '189098');
  48. INSERT INTO `product_etalase` (`id`, `name`, `category`, `price`) VALUES(37, 'lilalila', 'music', '9090');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement