shop.sql
上传用户:flow_meter
上传日期:2022-03-21
资源大小:40k
文件大小:10k
源码类别:

MySQL数据库

开发平台:

SQL

  1. -- MySQL dump 10.13  Distrib 5.1.26-rc, for Win32 (ia32)
  2. --
  3. -- Host: localhost    Database: shop
  4. -- ------------------------------------------------------
  5. -- Server version 5.1.26-rc-community
  6. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  7. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  8. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  9. /*!40101 SET NAMES utf8 */;
  10. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  11. /*!40103 SET TIME_ZONE='+00:00' */;
  12. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  13. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  14. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  15. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  16. --
  17. -- Table structure for table `customer`
  18. --
  19. DROP TABLE IF EXISTS `customer`;
  20. SET @saved_cs_client     = @@character_set_client;
  21. SET character_set_client = utf8;
  22. CREATE TABLE `customer` (
  23.   `customer_id` int(8) NOT NULL DEFAULT '0',
  24.   `customer_name` char(30) DEFAULT NULL,
  25.   `customer_address` char(50) DEFAULT NULL,
  26.   `customer_call` char(20) DEFAULT NULL,
  27.   `customer_mail` char(30) DEFAULT NULL,
  28.   `customer_register` datetime DEFAULT NULL,
  29.   PRIMARY KEY (`customer_id`)
  30. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  31. SET character_set_client = @saved_cs_client;
  32. --
  33. -- Dumping data for table `customer`
  34. --
  35. LOCK TABLES `customer` WRITE;
  36. /*!40000 ALTER TABLE `customer` DISABLE KEYS */;
  37. INSERT INTO `customer` VALUES (1,'李四','广州','020-020','shop@yahoo.com.cn','2008-10-26 00:00:00');
  38. /*!40000 ALTER TABLE `customer` ENABLE KEYS */;
  39. UNLOCK TABLES;
  40. --
  41. -- Table structure for table `fitting`
  42. --
  43. DROP TABLE IF EXISTS `fitting`;
  44. SET @saved_cs_client     = @@character_set_client;
  45. SET character_set_client = utf8;
  46. CREATE TABLE `fitting` (
  47.   `produce_id` int(8) NOT NULL,
  48.   `parent_produce_id` int(8) DEFAULT NULL,
  49.   PRIMARY KEY (`produce_id`)
  50. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  51. SET character_set_client = @saved_cs_client;
  52. --
  53. -- Dumping data for table `fitting`
  54. --
  55. LOCK TABLES `fitting` WRITE;
  56. /*!40000 ALTER TABLE `fitting` DISABLE KEYS */;
  57. INSERT INTO `fitting` VALUES (1,0),(2,1),(3,1),(4,2);
  58. /*!40000 ALTER TABLE `fitting` ENABLE KEYS */;
  59. UNLOCK TABLES;
  60. --
  61. -- Table structure for table `newtemp`
  62. --
  63. DROP TABLE IF EXISTS `newtemp`;
  64. SET @saved_cs_client     = @@character_set_client;
  65. SET character_set_client = utf8;
  66. CREATE TABLE `newtemp` (
  67.   `id` int(8) DEFAULT NULL
  68. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  69. SET character_set_client = @saved_cs_client;
  70. --
  71. -- Dumping data for table `newtemp`
  72. --
  73. LOCK TABLES `newtemp` WRITE;
  74. /*!40000 ALTER TABLE `newtemp` DISABLE KEYS */;
  75. /*!40000 ALTER TABLE `newtemp` ENABLE KEYS */;
  76. UNLOCK TABLES;
  77. --
  78. -- Table structure for table `produce`
  79. --
  80. DROP TABLE IF EXISTS `produce`;
  81. SET @saved_cs_client     = @@character_set_client;
  82. SET character_set_client = utf8;
  83. CREATE TABLE `produce` (
  84.   `produce_id` int(8) NOT NULL AUTO_INCREMENT,
  85.   `produce_name` char(30) DEFAULT NULL,
  86.   `produce_funtion` char(200) DEFAULT NULL,
  87.   `produce_price` double DEFAULT NULL,
  88.   `produce_sort` char(30) DEFAULT NULL,
  89.   `producer_id` int(8) DEFAULT NULL,
  90.   PRIMARY KEY (`produce_id`)
  91. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
  92. SET character_set_client = @saved_cs_client;
  93. --
  94. -- Dumping data for table `produce`
  95. --
  96. LOCK TABLES `produce` WRITE;
  97. /*!40000 ALTER TABLE `produce` DISABLE KEYS */;
  98. INSERT INTO `produce` VALUES (1,'联想笔记本','处理器类型:Core 2 Duo T8100标称主频(MHz):2100n标准内存容量(MB):2048硬盘容量:160GB',9500,'IT产品',1),(2,' Intel pentium D 805(盒)','cpu',670,'IT',1);
  99. /*!40000 ALTER TABLE `produce` ENABLE KEYS */;
  100. UNLOCK TABLES;
  101. --
  102. -- Table structure for table `producer`
  103. --
  104. DROP TABLE IF EXISTS `producer`;
  105. SET @saved_cs_client     = @@character_set_client;
  106. SET character_set_client = utf8;
  107. CREATE TABLE `producer` (
  108.   `producer_id` int(8) NOT NULL AUTO_INCREMENT,
  109.   `producer_name` char(30) NOT NULL,
  110.   `producer_address` char(50) DEFAULT NULL,
  111.   `producer_call` char(20) DEFAULT NULL,
  112.   `producer_describe` char(200) DEFAULT NULL,
  113.   PRIMARY KEY (`producer_id`)
  114. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
  115. SET character_set_client = @saved_cs_client;
  116. --
  117. -- Dumping data for table `producer`
  118. --
  119. LOCK TABLES `producer` WRITE;
  120. /*!40000 ALTER TABLE `producer` DISABLE KEYS */;
  121. INSERT INTO `producer` VALUES (1,'联想集团','中国北京','020-020','信息产业领域内多元化发展的大型企业');
  122. /*!40000 ALTER TABLE `producer` ENABLE KEYS */;
  123. UNLOCK TABLES;
  124. --
  125. -- Table structure for table `repair`
  126. --
  127. DROP TABLE IF EXISTS `repair`;
  128. SET @saved_cs_client     = @@character_set_client;
  129. SET character_set_client = utf8;
  130. CREATE TABLE `repair` (
  131.   `repair_id` int(8) NOT NULL AUTO_INCREMENT,
  132.   `repair_customer_id` int(8) DEFAULT NULL,
  133.   `repair_produce_id` int(8) DEFAULT NULL,
  134.   `repair_repair_shop_id` int(8) DEFAULT NULL,
  135.   `repair_time` datetime DEFAULT NULL,
  136.   `repair_information` char(200) DEFAULT NULL,
  137.   PRIMARY KEY (`repair_id`)
  138. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
  139. SET character_set_client = @saved_cs_client;
  140. --
  141. -- Dumping data for table `repair`
  142. --
  143. LOCK TABLES `repair` WRITE;
  144. /*!40000 ALTER TABLE `repair` DISABLE KEYS */;
  145. INSERT INTO `repair` VALUES (1,1,1,1,'2008-10-10 00:00:00','电源故障');
  146. /*!40000 ALTER TABLE `repair` ENABLE KEYS */;
  147. UNLOCK TABLES;
  148. --
  149. -- Table structure for table `repair_shop`
  150. --
  151. DROP TABLE IF EXISTS `repair_shop`;
  152. SET @saved_cs_client     = @@character_set_client;
  153. SET character_set_client = utf8;
  154. CREATE TABLE `repair_shop` (
  155.   `repair_shop_id` int(8) NOT NULL AUTO_INCREMENT,
  156.   `repair_shop_name` char(30) NOT NULL,
  157.   `repair_shop_address` char(50) DEFAULT NULL,
  158.   `repair_shop_keeper` char(30) DEFAULT NULL,
  159.   `repair_shop_call` char(20) DEFAULT NULL,
  160.   PRIMARY KEY (`repair_shop_id`)
  161. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
  162. SET character_set_client = @saved_cs_client;
  163. --
  164. -- Dumping data for table `repair_shop`
  165. --
  166. LOCK TABLES `repair_shop` WRITE;
  167. /*!40000 ALTER TABLE `repair_shop` DISABLE KEYS */;
  168. INSERT INTO `repair_shop` VALUES (1,'联想电脑维修点','南京市','王五','111-111');
  169. /*!40000 ALTER TABLE `repair_shop` ENABLE KEYS */;
  170. UNLOCK TABLES;
  171. --
  172. -- Table structure for table `result`
  173. --
  174. DROP TABLE IF EXISTS `result`;
  175. SET @saved_cs_client     = @@character_set_client;
  176. SET character_set_client = utf8;
  177. CREATE TABLE `result` (
  178.   `id` int(8) DEFAULT NULL
  179. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  180. SET character_set_client = @saved_cs_client;
  181. --
  182. -- Dumping data for table `result`
  183. --
  184. LOCK TABLES `result` WRITE;
  185. /*!40000 ALTER TABLE `result` DISABLE KEYS */;
  186. INSERT INTO `result` VALUES (1),(2),(3),(4);
  187. /*!40000 ALTER TABLE `result` ENABLE KEYS */;
  188. UNLOCK TABLES;
  189. --
  190. -- Table structure for table `sell`
  191. --
  192. DROP TABLE IF EXISTS `sell`;
  193. SET @saved_cs_client     = @@character_set_client;
  194. SET character_set_client = utf8;
  195. CREATE TABLE `sell` (
  196.   `sell_id` int(8) NOT NULL AUTO_INCREMENT,
  197.   `sell_store_id` int(8) DEFAULT NULL,
  198.   `sell_produce_id` int(8) DEFAULT NULL,
  199.   `sell_customer_id` int(8) DEFAULT NULL,
  200.   `sell_amount` int(8) DEFAULT NULL,
  201.   `sell_time` datetime DEFAULT NULL,
  202.   PRIMARY KEY (`sell_id`)
  203. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
  204. SET character_set_client = @saved_cs_client;
  205. --
  206. -- Dumping data for table `sell`
  207. --
  208. LOCK TABLES `sell` WRITE;
  209. /*!40000 ALTER TABLE `sell` DISABLE KEYS */;
  210. INSERT INTO `sell` VALUES (1,1,1,1,2,'2008-10-27 00:00:00');
  211. /*!40000 ALTER TABLE `sell` ENABLE KEYS */;
  212. UNLOCK TABLES;
  213. --
  214. -- Table structure for table `store`
  215. --
  216. DROP TABLE IF EXISTS `store`;
  217. SET @saved_cs_client     = @@character_set_client;
  218. SET character_set_client = utf8;
  219. CREATE TABLE `store` (
  220.   `store_id` int(8) NOT NULL AUTO_INCREMENT,
  221.   `store_name` char(50) DEFAULT NULL,
  222.   `store_address` char(50) DEFAULT NULL,
  223.   `store_keeper` char(30) DEFAULT NULL,
  224.   `store_call` char(20) DEFAULT NULL,
  225.   PRIMARY KEY (`store_id`)
  226. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
  227. SET character_set_client = @saved_cs_client;
  228. --
  229. -- Dumping data for table `store`
  230. --
  231. LOCK TABLES `store` WRITE;
  232. /*!40000 ALTER TABLE `store` DISABLE KEYS */;
  233. INSERT INTO `store` VALUES (1,'南京联想电脑专卖店','南京','张三','010-010');
  234. /*!40000 ALTER TABLE `store` ENABLE KEYS */;
  235. UNLOCK TABLES;
  236. --
  237. -- Table structure for table `temp`
  238. --
  239. DROP TABLE IF EXISTS `temp`;
  240. SET @saved_cs_client     = @@character_set_client;
  241. SET character_set_client = utf8;
  242. CREATE TABLE `temp` (
  243.   `id` int(8) DEFAULT NULL
  244. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  245. SET character_set_client = @saved_cs_client;
  246. --
  247. -- Dumping data for table `temp`
  248. --
  249. LOCK TABLES `temp` WRITE;
  250. /*!40000 ALTER TABLE `temp` DISABLE KEYS */;
  251. /*!40000 ALTER TABLE `temp` ENABLE KEYS */;
  252. UNLOCK TABLES;
  253. --
  254. -- Table structure for table `user`
  255. --
  256. DROP TABLE IF EXISTS `user`;
  257. SET @saved_cs_client     = @@character_set_client;
  258. SET character_set_client = utf8;
  259. CREATE TABLE `user` (
  260.   `user_id` char(20) NOT NULL DEFAULT '',
  261.   `user_password` char(20) DEFAULT NULL,
  262.   `user_level` int(11) DEFAULT NULL,
  263.   PRIMARY KEY (`user_id`)
  264. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  265. SET character_set_client = @saved_cs_client;
  266. --
  267. -- Dumping data for table `user`
  268. --
  269. LOCK TABLES `user` WRITE;
  270. /*!40000 ALTER TABLE `user` DISABLE KEYS */;
  271. INSERT INTO `user` VALUES ('2006','guo',0),('root','root',1);
  272. /*!40000 ALTER TABLE `user` ENABLE KEYS */;
  273. UNLOCK TABLES;
  274. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  275. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  276. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  277. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  278. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  279. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  280. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  281. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  282. -- Dump completed on 2008-11-10  9:50:41