飞道的博客

电子商城数据库源码

300人阅读  评论(0)

  
  1. use master
  2. go
  3. if exists( select* from sysdatabases where name= 'EasyBuy')
  4. drop database EasyBuy
  5. create database EasyBuy
  6. go
  7. use EasyBuy
  8. go
  9. create table users --用户信息表
  10. (
  11. userid int identity( 1, 1) primary key, --用户ID
  12. username varchar( 20) not null, --用户的帐户名
  13. password varchar( 20) not null, --用户密码
  14. name varchar( 10) not null, --用户真实信息
  15. question varchar( 30), --丢失密码问题
  16. answer varchar( 20), --用户回答问题,用于找回密码
  17. sex varchar( 2) not null, --用户性别
  18. phone varchar( 20) not null, --用户的电话
  19. email varchar( 20), --用户的电子邮件
  20. address varchar( 50), --用户的地址
  21. post varchar( 10), --用户所在地区的邮编编号
  22. province varchar( 10) not null, --用户所在的省份
  23. city varchar( 10) not null, --用户所在城市
  24. remark varchar( 50), --备注
  25. leave int not null, --用户级别(1为后台用户,2为前台用户)
  26. )
  27. create table aclass --产品大类表
  28. (
  29. aclassid int identity( 1, 1) primary key, --产品大类的ID
  30. name varchar( 20) not null, --产品大类的名称
  31. )
  32. create table bclass --产品小类表
  33. (
  34. bclassid int identity( 1, 1) primary key, --产品小类的ID
  35. aclassid int foreign key references aclass(aclassid), --关联大类的aclassid
  36. name varchar( 20) not null, --产品小类的名称
  37. )
  38. create table poduct --产品信息表
  39. (
  40. productid int identity( 1, 1) primary key, --产品信息的ID
  41. bclassid int foreign key references bclass(bclassid), --关联小类的bclassid
  42. name varchar( 150) not null, --产品信息的名称
  43. brand varchar( 50) not null, --产品品牌
  44. price money not null, --市场价格
  45. memberprice money not null, --本站价格
  46. differprice money not null, --节省差价
  47. picture varchar( 150) , --产品图片
  48. time datetime not null, --添加时间
  49. stock int, --产品库存
  50. hit int, --产品点击数
  51. detail varchar( 3000), --产品描述
  52. )
  53. create table news --新闻表
  54. (
  55. id int identity( 1, 1) primary key, --新闻ID
  56. title varchar( 30) not null, --新闻标题
  57. content text not null, --新闻内容
  58. time datetime not null, --新闻添加时间
  59. type varchar( 10) not null, --新闻类型
  60. )
  61. create table guest --评论表
  62. (
  63. guestid int identity( 1, 1) primary key, --ID
  64. name varchar( 20) not null, --昵称
  65. content text , --留言内容
  66. productid int foreign key references poduct(productid), --关联产品信息的主键
  67. time datetime not null, --留言时间
  68. ip varchar( 20) not null, --用户的IP
  69. )
  70. create table orders --订单信息表
  71. (
  72. orderid int identity( 1, 1) primary key, --ID
  73. userid int foreign key references users(userid), --关联用户表的主键
  74. sumprice money not null, --总价格
  75. orderdate datetime not null, --订单日期
  76. linkman varchar( 10) not null, --联系人
  77. email varchar( 30) not null, --联系人email
  78. phone varchar( 15) not null, --联系人的电话
  79. postalcode varchar( 10) not null, --送货处邮编
  80. address varchar( 300) not null, --送货地址
  81. result varchar( 10) not null, --处理结果
  82. remark text , --备注
  83. songhuoqixian int not null, --送货期限
  84. songhuofangshi varchar( 20) not null, --送货方式
  85. fukuanfangshi varchar( 20) not null, --付款方式
  86. error varchar( 200) , --意外说明
  87. )
  88. create table orderlist --订单列表
  89. (
  90. orderlistid int identity( 1, 1) primary key, --ID
  91. orderid int foreign key references orders(orderid), --订单信息表的主键
  92. productid int foreign key references poduct(productid), --关联产品的主键
  93. quantity int not null, --所定的数目
  94. unitcost money not null, --单价
  95. productname varchar( 150) not null, --产品名称
  96. )
  97. create table reply --回复表
  98. (
  99. replyid int identity( 1, 1) primary key, -- 主键
  100. content text not null, --回复内容
  101. time datetime not null, --回复时间
  102. guestid int foreign key references guest(guestid) --外键
  103. )
  104. create table shoppingcar --购物车表
  105. (
  106. id int primary key identity, --主键
  107. userid int references users(userid), --外键 用户编号
  108. productid int references poduct(productid), --外键 商品编号
  109. num int, --订购商品数量
  110. )
  111. go
  112. -----用户数据
  113. --后台用户
  114. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  115. values( 'admin', 'admin', 'tom', '', '', '男', '13576827625', 'tomtom@live.cn', '河南郑州市金水区金水路27号', '475000', '河南省', '郑州', '', 1)
  116. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  117. values( 'sa', 'sa', 'lisa', '', '', '女', '15225186360', '1181489599@qq.com', '河南郑州市金水区金水路27号', '475000', '河南省', '郑州', '', 1)
  118. --前台用户
  119. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  120. values( 'aaaaaa', 'aaaaaa', 'aaa111', '', '', '男', '13534879654', 'jackjack@live.cn', '河南郑州市二七区南阳路35号', '475000', '河南省', '郑州市', '', 2)
  121. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  122. values( 'bbbbbb', 'bbbbbb', 'bbb222', '', '', '女', '13546272341', '梦璃@live.cn', '河南开封市龙亭区10号', '475100', '河南省', '开封市', '', 2)
  123. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  124. values( 'cccccc', 'cccccc', 'ccc333', '', '', '男', '13576548971', 'shishu@live.cn', '河南南阳市南阳路25号', '475200', '河南省', '南阳市', '', 2)
  125. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  126. values( 'dddddd', 'dddddd', 'ddd444', '', '', '女', '13512345678', 'xiaomei@live.cn', '广东省广州市沈滇区13号', '3461200', '广东省', '广州市', '', 2)
  127. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  128. values( 'aaa', 'aaa', 'aaa111', '', '', '男', '13534879654', 'jackjack@live.cn', '河南郑州市二七区南阳路35号', '475000', '河南省', '郑州市', '', 2)
  129. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  130. values( 'bbb', 'bbb', 'bbb222', '', '', '女', '13546272341', '梦璃@live.cn', '河南开封市龙亭区10号', '475100', '河南省', '开封市', '', 2)
  131. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  132. values( 'ccc', 'ccc', 'ccc333', '', '', '男', '13576548971', 'shishu@live.cn', '河南南阳市南阳路25号', '475200', '河南省', '南阳市', '', 2)
  133. insert into users(username, password, name,question,answer,sex,phone,email,address,post,province,city,remark,leave)
  134. values( 'ddd', 'ddd', 'ddd444', '', '', '女', '13512345678', 'xiaomei@live.cn', '广东省广州市沈滇区13号', '3461200', '广东省', '广州市', '', 2)
  135. -----产品数据(大类)
  136. insert into aclass( name) values( '电脑配件')
  137. insert into aclass( name) values( '办公设备')
  138. insert into aclass( name) values( '手机')
  139. insert into aclass( name) values( '数码')
  140. insert into aclass( name) values( '电脑整机')
  141. -----产品数据(小类)
  142. --电脑配件
  143. insert into bclass(aclassid, name) values( 1, '耳机')
  144. insert into bclass(aclassid, name) values( 1, '移动硬盘')
  145. insert into bclass(aclassid, name) values( 1, 'CPU')
  146. insert into bclass(aclassid, name) values( 1, '主板')
  147. insert into bclass(aclassid, name) values( 1, '内存')
  148. insert into bclass(aclassid, name) values( 1, ' 硬盘')
  149. insert into bclass(aclassid, name) values( 1, '显卡')
  150. insert into bclass(aclassid, name) values( 1, '显示器')
  151. insert into bclass(aclassid, name) values( 1, '光驱')
  152. insert into bclass(aclassid, name) values( 1, '声卡')
  153. insert into bclass(aclassid, name) values( 1, '键盘')
  154. insert into bclass(aclassid, name) values( 1, '鼠标')
  155. insert into bclass(aclassid, name) values( 1, '键鼠套装')
  156. insert into bclass(aclassid, name) values( 1, '机箱')
  157. insert into bclass(aclassid, name) values( 1, '电源')
  158. insert into bclass(aclassid, name) values( 1, '散热器')
  159. insert into bclass(aclassid, name) values( 1, '音箱')
  160. --办公设备
  161. insert into bclass(aclassid, name) values( 2, '打印机')
  162. insert into bclass(aclassid, name) values( 2, '传真机')
  163. insert into bclass(aclassid, name) values( 2, '复印机')
  164. insert into bclass(aclassid, name) values( 2, '电脑')
  165. insert into bclass(aclassid, name) values( 2, '一体机')
  166. insert into bclass(aclassid, name) values( 2, '办公桌椅')
  167. insert into bclass(aclassid, name) values( 2, '电话')
  168. insert into bclass(aclassid, name) values( 2, '文件柜')
  169. --手机
  170. insert into bclass(aclassid, name) values( 3, '手机')
  171. insert into bclass(aclassid, name) values( 3, '对讲机')
  172. --数码
  173. insert into bclass(aclassid, name) values( 4, '数码相机')
  174. insert into bclass(aclassid, name) values( 4, '单电/微单相机')
  175. insert into bclass(aclassid, name) values( 4, '单反相机')
  176. insert into bclass(aclassid, name) values( 4, '摄像机')
  177. insert into bclass(aclassid, name) values( 4, '云台相机')
  178. insert into bclass(aclassid, name) values( 4, ' MP3/MP4')
  179. insert into bclass(aclassid, name) values( 4, 'MID')
  180. insert into bclass(aclassid, name) values( 4, '耳机/耳麦')
  181. insert into bclass(aclassid, name) values( 4, '音箱')
  182. insert into bclass(aclassid, name) values( 4, '高清播放器')
  183. insert into bclass(aclassid, name) values( 4, '电子书')
  184. insert into bclass(aclassid, name) values( 4, '电子词典')
  185. insert into bclass(aclassid, name) values( 4, '录音笔')
  186. insert into bclass(aclassid, name) values( 4, '麦克风')
  187. insert into bclass(aclassid, name) values( 4, '专业音频')
  188. insert into bclass(aclassid, name) values( 4, '电子教育')
  189. --电脑整机
  190. insert into bclass(aclassid, name) values( 5, '笔记本')
  191. insert into bclass(aclassid, name) values( 5, '台式机')
  192. insert into bclass(aclassid, name) values( 5, '平板')
  193. -----产品信息表
  194. --耳机(飞利浦)
  195. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  196. values( 1, '飞利浦(PHILIPS)Style系列头戴耳机SHL5002(绿灰色)', '飞利浦', 259.00, 145.00, 114.00, '191002.jpg,1995951.jpg,1995956.jpg', GETDATE(), 100, 14211, '')
  197. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  198. values( 1, '飞利浦(PHILIPS) SHL8807 头戴式耳机 强劲的低音,个性化定制耳罩 iPhone专属 白色', '飞利浦', 399.00, 240.00, 159.00, '181862.jpg,181867.jpg', GETDATE(), 100, 1411, '')
  199. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  200. values( 1, '飞利浦(PHILIPS) SHE3575OP/10 手机耳机 外形小巧,音效震撼 专为手机设计 红橙色', '飞利浦', 149.00, 85.00, 64.00, '1818157.jpg,181822.jpg', GETDATE(), 100, 1111, '')
  201. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  202. values( 1, '飞利浦(PHILIPS) SHE3575YB/10 手机耳机 外形小巧,音效震撼 专为手机设计 黄色/蓝色', '飞利浦', 149.00, 85.00, 64.00, '1817580.jpg,1817588.jpg', GETDATE(), 100, 555, '')
  203. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  204. values( 1, '飞利浦(PHILIPS)SBCHL145/98 轻便头戴型耳机', '飞利浦', 79.00, 45.00, 34.00, '16174344.jpg,16174350.jpg', GETDATE(), 100, 6666,
  205. '进入耳中的音乐
  206. 30 毫米喇叭驱动器确保音效一流
  207. 低音节拍音孔可以优化控制气流,从而得到最佳声音效果
  208. 符合您的习惯和生活方式
  209. 超轻头带让您感觉更加舒适
  210. 随时准备好
  211. 1.0 米长的电缆是户外使用的理想长度
  212. 结实的头带可以延长耳机的使用寿命
  213. 耐用的软质耳挂使得连接非常灵活
  214. ')
  215. --耳机(三星)
  216. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  217. values( 1, '三星I9300 i9100 N7100 I9003 I9008L S5830 I9220耳机', '三星', 100.00, 70.00, 30.00, 'T1WAlRXt4hXXXXXXXX_!!0-item_pic_jpg_310x310.jpg', GETDATE(), 100, 3333, '')
  218. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  219. values( 1, '三星 I9100 I9220 I9103 I9188 I9250 I9308 N7100 I9300 耳机 原装有线耳机 线控耳机 可调节音量 (白色)', '三星', 60.00, 20.00, 40.00, '21OWgfgSXfL__SL500_.jpg', GETDATE(), 100, 5565, '')
  220. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  221. values( 1, '三星 HM1900 W899 W799 W999 音乐 降噪 蓝牙耳机 原装正品 联保【绅士灰】', '三星', 309.00, 209.00, 100.00, '41f7V8aV3aL__SL500_.jpg', GETDATE(), 100, 98587, '')
  222. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  223. values( 1, '飞利浦(PHILIPS) SHE3575YB/10 手机耳机 外形小巧,音效震撼 专为手机设计 黄色/蓝色', '三星', 268.00, 216.00, 52.00, '31v9rNZoh2L__SL500_.jpg,41Z9EhjELQL.jpg,41HwtboggCL.jpg,51yqTbtV9oL.jpg', GETDATE(), 100, 7649, '')
  224. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  225. values( 1, '三星I9300 i9100 N7100 I9003 I9008L S5830 I9220耳机', '三星', 100.00, 70.00, 30.00, 'T1WAlRXt4hXXXXXXXX_!!0-item_pic_jpg_310x310.jpg', GETDATE(), 100, 3333, '')
  226. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  227. values( 1, '三星 I9100 I9220 I9103 I9188 I9250 I9308 N7100 I9300 耳机 原装有线耳机 线控耳机 可调节音量 (白色)', '三星', 60.00, 20.00, 40.00, '21OWgfgSXfL__SL500_.jpg', GETDATE(), 100, 5565, '')
  228. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  229. values( 1, '三星 HM1900 W899 W799 W999 音乐 降噪 蓝牙耳机 原装正品 联保【绅士灰】', '三星', 309.00, 209.00, 100.00, '41f7V8aV3aL__SL500_.jpg', GETDATE(), 100, 98587, '')
  230. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  231. values( 1, '飞利浦(PHILIPS) SHE3575YB/10 手机耳机 外形小巧,音效震撼 专为手机设计 黄色/蓝色', '三星', 268.00, 216.00, 52.00, '31v9rNZoh2L__SL500_.jpg,41Z9EhjELQL.jpg,41HwtboggCL.jpg,51yqTbtV9oL.jpg', GETDATE(), 100, 7649, '')
  232. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  233. values( 1, '三星I9300 i9100 N7100 I9003 I9008L S5830 I9220耳机', '三星', 100.00, 70.00, 30.00, 'T1WAlRXt4hXXXXXXXX_!!0-item_pic_jpg_310x310.jpg', GETDATE(), 100, 3333, '')
  234. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  235. values( 1, '三星 I9100 I9220 I9103 I9188 I9250 I9308 N7100 I9300 耳机 原装有线耳机 线控耳机 可调节音量 (白色)', '三星', 60.00, 20.00, 40.00, '21OWgfgSXfL__SL500_.jpg', GETDATE(), 100, 5565, '')
  236. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  237. values( 1, '三星 HM1900 W899 W799 W999 音乐 降噪 蓝牙耳机 原装正品 联保【绅士灰】', '三星', 309.00, 209.00, 100.00, '41f7V8aV3aL__SL500_.jpg', GETDATE(), 100, 98587, '')
  238. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  239. values( 1, '飞利浦(PHILIPS) SHE3575YB/10 手机耳机 外形小巧,音效震撼 专为手机设计 黄色/蓝色', '三星', 268.00, 216.00, 52.00, '31v9rNZoh2L__SL500_.jpg,41Z9EhjELQL.jpg,41HwtboggCL.jpg,51yqTbtV9oL.jpg', GETDATE(), 100, 7649, '')
  240. --移动硬盘
  241. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  242. values( 2, '西部数据(Western Digital)绿盘 1TB WD10EURX SATA 3Gb/s 64MB 台式机监控硬盘', '西部数据', 769.00, 739.00, 30.00, '1214304.jpg,12143012.jpg,12143020.jpg', GETDATE(), 100, 765, '')
  243. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  244. values( 2, '西部数据(WD)My Book Elite系列3.5英寸外部硬盘1TB (黑色)(WDBAAH0010HCH)独有电子标签功能,轻松简单记忆容量!', '西部数据', 1299.00, 999.00, 300.00, '2315924.jpg,2315936.jpg,2315941.jpg,2315948.jpg', GETDATE(), 100, 542, '')
  245. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  246. values( 2, '西部数据(WD)3.5移动硬盘(WDH1NC10000A/S)网络硬盘USB2.0+远程访问1TB', '西部数据', 2999.00, 1499.00, 1500.00, '2315031.jpg,2315037.jpg,2315054.jpg', GETDATE(), 100, 655, '')
  247. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  248. values( 2, '西部数据(WD)My Passport Elite系列2.5英寸超便携硬盘500GB (红色)(WDBAAC5000ARD)', '西部数据', 1299.00, 859.00, 440.00, '231434.jpg,2314313.jpg,2314322.jpg', GETDATE(), 100, 97, '')
  249. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  250. values( 2, '西部数据(WD)My Passport Essential系列2.5英寸第四代移动硬盘320GB (蓝色)', '西部数据', 799.00, 549.00, 250.00, '2313738.jpg,2313747.jpg,231383.jpg', GETDATE(), 100, 653, '')
  251. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  252. values( 2, '西部数据(WD)Elements Portable 系列2.5英寸移动硬盘320GB (黑色)低价井喷啦!', '西部数据', 599.00, 399.00, 200.00, '2312365.jpg,23123614.jpg,23123621.jpg', GETDATE(), 100, 9443, '')
  253. --CPU(AMD)
  254. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  255. values( 3, 'AMD FX-Series X8(FX系列八核)FX-8120 盒装CPU', 'AMD', 1309.00, 1259.00, 50.00, '16165911.jpg,16165922.jpg,16165929.jpg,16165955.jpg', GETDATE(), 100, 9443, '')
  256. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  257. values( 3, 'AMD Athlon II X4(速龙II四核)651k 盒装CPU', 'AMD', 549.00, 519.00, 30.00, '16151223.jpg,16152243.jpg,16152254.jpg', GETDATE(), 100, 9443, '')
  258. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  259. values( 3, 'AMD A-Serise X4 A6-3650盒装CPU', 'AMD', 699.00, 669.00, 30.00, '7152850.jpg,715296.jpg,7152949.jpg', GETDATE(), 100, 9443, '')
  260. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  261. values( 3, 'AMD FX-Series X8(FX系列八核)FX-8120 盒装CPU', 'AMD', 1309.00, 1259.00, 50.00, '16165911.jpg,16165922.jpg,16165929.jpg,16165955.jpg', GETDATE(), 100, 9443, '')
  262. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  263. values( 3, 'AMD Athlon II X4(速龙II四核)651k 盒装CPU', 'AMD', 549.00, 519.00, 30.00, '16151223.jpg,16152243.jpg,16152254.jpg', GETDATE(), 100, 9443, '')
  264. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  265. values( 3, 'AMD A-Serise X4 A6-3650盒装CPU', 'AMD', 699.00, 669.00, 30.00, '7152850.jpg,715296.jpg,7152949.jpg', GETDATE(), 100, 9443, '')
  266. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  267. values( 3, 'AMD FX-Series X8(FX系列八核)FX-8120 盒装CPU', 'AMD', 1309.00, 1259.00, 50.00, '16165911.jpg,16165922.jpg,16165929.jpg,16165955.jpg', GETDATE(), 100, 9443, '')
  268. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  269. values( 3, 'AMD Athlon II X4(速龙II四核)651k 盒装CPU', 'AMD', 549.00, 519.00, 30.00, '16151223.jpg,16152243.jpg,16152254.jpg', GETDATE(), 100, 9443, '')
  270. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  271. values( 3, 'AMD A-Serise X4 A6-3650盒装CPU', 'AMD', 699.00, 669.00, 30.00, '7152850.jpg,715296.jpg,7152949.jpg', GETDATE(), 100, 9443, '')
  272. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  273. values( 3, 'AMD FX-Series X8(FX系列八核)FX-8120 盒装CPU', 'AMD', 1309.00, 1259.00, 50.00, '16165911.jpg,16165922.jpg,16165929.jpg,16165955.jpg', GETDATE(), 100, 9443, '')
  274. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  275. values( 3, 'AMD Athlon II X4(速龙II四核)651k 盒装CPU', 'AMD', 549.00, 519.00, 30.00, '16151223.jpg,16152243.jpg,16152254.jpg', GETDATE(), 100, 9443, '')
  276. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  277. values( 3, 'AMD A-Serise X4 A6-3650盒装CPU', 'AMD', 699.00, 669.00, 30.00, '7152850.jpg,715296.jpg,7152949.jpg', GETDATE(), 100, 9443, '')
  278. --CPU(Intel)
  279. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  280. values( 3, '英特尔(Intel)32纳米 酷睿i7 四核处理器 i7 2600K盒装CPU', 'Intel', 2099.00, 2039.00, 60.00, '5154140.jpg,5154148.jpg,5154155.jpg', GETDATE(), 100, 9443, '')
  281. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  282. values( 3, '英特尔(Intel)32纳米 酷睿i5 四核处理器 i5 2500盒装CPU ', 'Intel', 1479.00, 1439.00, 40.00, '5152623.jpg,5152633.jpg,5152645.jpg', GETDATE(), 100, 9443, '
  283. 32nm制程的全新微架构,造就第二代Intel 酷睿处理器家族
  284. • 全集成的台式机微处理器方案
  285. • 更卓越的处理性能,更好的媒体和计算性能
  286. 革命性的微架构
  287. – Intel AVX 加速浮点密集型应用
  288. – 优化的Intel睿频加速技术
  289. |改进的图形架构
  290. -新一代的多媒体功能,功耗管理技术和3D性能
  291. -图形核心与CPU核心共享LLC 缓存,减少对系统内存的依赖,提升图形数据处理带宽、降低延迟
  292. 下一代供电控制单元(PCU)
  293. CPU核心和图形核心之间智能供电共享,优化性能
  294. 4核/4重多任务处理
  295. 英特尔睿频加速技术2.0-依据负载轻重,自动变速执行
  296. 英特尔核芯显卡2000
  297. 英特尔智能高速缓存-CPU内核间高效的数据共享
  298. 集成内存控制器-更快的内存访问速度
  299. 支持双通道DDR3内存-更大的内存带宽
  300. ')
  301. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  302. values( 3, '英特尔(Intel)22纳米 酷睿i5 四核处理器 i5 3450盒装CPU', 'Intel', 1379.00, 1359.00, 20.00, '72615436.jpg,26154824.jpg,26154850.jpg', GETDATE(), 100, 9443, '
  303. 根据intel 的 TICK-TOCK策略,2012将是intel 的工艺年,因此Ivy Bridge处理器将采用22nm新工艺制造,intel 最新发布的3D晶体
  304. 管技术也将和22nm工艺完美结合。但内核架构方面与32nm的Sandy Bridge相比不会有太大的变化。从目前获取的资料来看也确实如此,
  305. 在内核架构上Ivy Bridge只是做一些细节上的增强和完善。
  306. 在性能方面,ivy bridge将比Sandy Bridge增强20%--30%,
  307. 集成显卡性能也有30%性能的提升。升级支持DirectX 11、OpenCL 1.1标准,同时支持HDMI 1.4输出和三台独立显示器;
  308. 通讯总线方面:支持PCI-E 3.0标准规范;
  309. 内存方面:内存支持1.5V DDR3-1600和低压版1.35V DDR3L-1333,不过后者仅限移动平台
  310. ivy bridge将搭配Panther Point 7系列芯片组,Panther Point 7相比于6系列变化也不是很多,不过还是有很令人兴奋的功能出现,
  311. 那就加入了对USB 3.0的原生支持,可提供最多四个接口,同时USB 2.0接口最多十四个,但注意其中四个是和USB 3.0共享的,
  312. 所以USB接口总数最多也是十四个。
  313. ')
  314. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  315. values( 3, '英特尔(Intel)32纳米 酷睿i7 四核处理器 i7 2600K盒装CPU', 'Intel', 2099.00, 2039.00, 60.00, '5154140.jpg,5154148.jpg,5154155.jpg', GETDATE(), 100, 9443, '')
  316. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  317. values( 3, '英特尔(Intel)32纳米 酷睿i5 四核处理器 i5 2500盒装CPU ', 'Intel', 1479.00, 1439.00, 40.00, '5152623.jpg,5152633.jpg,5152645.jpg', GETDATE(), 100, 9443, '
  318. 32nm制程的全新微架构,造就第二代Intel 酷睿处理器家族
  319. • 全集成的台式机微处理器方案
  320. • 更卓越的处理性能,更好的媒体和计算性能
  321. 革命性的微架构
  322. – Intel AVX 加速浮点密集型应用
  323. – 优化的Intel睿频加速技术
  324. |改进的图形架构
  325. -新一代的多媒体功能,功耗管理技术和3D性能
  326. -图形核心与CPU核心共享LLC 缓存,减少对系统内存的依赖,提升图形数据处理带宽、降低延迟
  327. 下一代供电控制单元(PCU)
  328. CPU核心和图形核心之间智能供电共享,优化性能
  329. 4核/4重多任务处理
  330. 英特尔睿频加速技术2.0-依据负载轻重,自动变速执行
  331. 英特尔核芯显卡2000
  332. 英特尔智能高速缓存-CPU内核间高效的数据共享
  333. 集成内存控制器-更快的内存访问速度
  334. 支持双通道DDR3内存-更大的内存带宽
  335. ')
  336. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  337. values( 3, '英特尔(Intel)22纳米 酷睿i5 四核处理器 i5 3450盒装CPU', 'Intel', 1379.00, 1359.00, 20.00, '72615436.jpg,26154824.jpg,26154850.jpg', GETDATE(), 100, 9443, '
  338. 根据intel 的 TICK-TOCK策略,2012将是intel 的工艺年,因此Ivy Bridge处理器将采用22nm新工艺制造,intel 最新发布的3D晶体
  339. 管技术也将和22nm工艺完美结合。但内核架构方面与32nm的Sandy Bridge相比不会有太大的变化。从目前获取的资料来看也确实如此,
  340. 在内核架构上Ivy Bridge只是做一些细节上的增强和完善。
  341. 在性能方面,ivy bridge将比Sandy Bridge增强20%--30%,
  342. 集成显卡性能也有30%性能的提升。升级支持DirectX 11、OpenCL 1.1标准,同时支持HDMI 1.4输出和三台独立显示器;
  343. 通讯总线方面:支持PCI-E 3.0标准规范;
  344. 内存方面:内存支持1.5V DDR3-1600和低压版1.35V DDR3L-1333,不过后者仅限移动平台
  345. ivy bridge将搭配Panther Point 7系列芯片组,Panther Point 7相比于6系列变化也不是很多,不过还是有很令人兴奋的功能出现,
  346. 那就加入了对USB 3.0的原生支持,可提供最多四个接口,同时USB 2.0接口最多十四个,但注意其中四个是和USB 3.0共享的,
  347. 所以USB接口总数最多也是十四个。
  348. ')
  349. -----电脑整机
  350. --笔记本(宏基)
  351. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  352. values( 44, '宏碁4250-E302G32Mnkk(买即送100元代金券)', '宏基', 2799.00, 2650.00, 149.00, '9102544.jpg,9102553.jpg,9102558.jpg', GETDATE(), 100, 9443, '')
  353. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  354. values( 44, '宏碁(acer)AS4752G-32352G32Mnkk 14英寸笔记本电脑 骑士黑', '宏基', 3799.00, 3599.00, 200.00, '19113029.jpg,19113040.jpg,19113047.jpg,19113111.jpg,19113117.jpg', GETDATE(), 100, 9443, '')
  355. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  356. values( 44, '宏碁(acer)AS4752G-52452G50Mnuu 14英寸笔记本电脑 玫瑰紫', '宏基', 4399.00, 4299.00, 100.00, '16192627.jpg,16192639.jpg,16192645.jpg,1619270.jpg', GETDATE(), 100, 9443, '')
  357. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  358. values( 44, '宏碁(acer)AS4752G-52452G50Mncc 14英寸笔记本电脑 香槟金', '宏基', 4399.00, 4199.00, 200.00, '16192210.jpg,16192218.jpg,16192231.jpg,16192241.jpg', GETDATE(), 100, 9443, '')
  359. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  360. values( 44, '宏碁(acer)AS4733Z-452G32Mnrr 14英寸笔记本电脑 靓丽红 ', '宏基', 3460.00, 3099.00, 361.00, '8165620.jpg,8165628.jpg,8165635.jpg,8165643.jpg,8165648.jpg', GETDATE(), 100, 9443, '')
  361. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  362. values( 44, '宏碁(acer)AS4830TG-2412G64Mnbb 14英寸笔记本电脑', '宏基', 6128.00, 5988.00, 140.00, '815573.jpg,815579.jpg,8155715.jpg,8155721.jpg', GETDATE(), 100, 9443, '')
  363. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  364. values( 44, '宏碁4250-E302G32Mnkk(买即送100元代金券)', '宏基', 2799.00, 2650.00, 149.00, '9102544.jpg,9102553.jpg,9102558.jpg', GETDATE(), 100, 9443, '')
  365. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  366. values( 44, '宏碁(acer)AS4752G-32352G32Mnkk 14英寸笔记本电脑 骑士黑', '宏基', 3799.00, 3599.00, 200.00, '19113029.jpg,19113040.jpg,19113047.jpg,19113111.jpg,19113117.jpg', GETDATE(), 100, 9443, '')
  367. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  368. values( 44, '宏碁(acer)AS4752G-52452G50Mnuu 14英寸笔记本电脑 玫瑰紫', '宏基', 4399.00, 4299.00, 100.00, '16192627.jpg,16192639.jpg,16192645.jpg,1619270.jpg', GETDATE(), 100, 9443, '')
  369. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  370. values( 44, '宏碁(acer)AS4752G-52452G50Mncc 14英寸笔记本电脑 香槟金', '宏基', 4399.00, 4199.00, 200.00, '16192210.jpg,16192218.jpg,16192231.jpg,16192241.jpg', GETDATE(), 100, 9443, '')
  371. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  372. values( 44, '宏碁(acer)AS4733Z-452G32Mnrr 14英寸笔记本电脑 靓丽红 ', '宏基', 3460.00, 3099.00, 361.00, '8165620.jpg,8165628.jpg,8165635.jpg,8165643.jpg,8165648.jpg', GETDATE(), 100, 9443, '')
  373. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  374. values( 44, '宏碁(acer)AS4830TG-2412G64Mnbb 14英寸笔记本电脑', '宏基', 6128.00, 5988.00, 140.00, '815573.jpg,815579.jpg,8155715.jpg,8155721.jpg', GETDATE(), 100, 9443, '')
  375. --笔记本(联想)
  376. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  377. values( 44, '联想(Lenovo)G470AL 14.0英寸笔记本电脑(i5-2450M 2G 500G 1G独显 摄像头 DVD刻录 Linux)黑色', '联想', 6128.00, 5988.00, 140.00, '2013-04-24_130332.jpg,2013-04-24_130435.jpg,2013-04-24_130507.jpg', GETDATE(), 100, 9443, '')
  378. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  379. values( 44, 'ThinkPad E430C(3365-A16)14英寸笔记本电脑(i3-3110M 2G 500G GT630 2G独显 蓝牙 摄像头)', '联想', 3699.00, 3599.00, 100.00, '2013-04-24_130633.jpg,2013-04-24_130708.jpg,2013-04-24_130743.jpg', GETDATE(), 100, 9443, '')
  380. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  381. values( 44, '联想(Lenovo) Y500N 15.6英寸笔记本电脑 (i5-3230M 8G 1T 4G独显 DVD刻录 Win8)灰色', '联想', 6699.00, 6399.00, 300.00, '2013-04-24_130949.jpg,2013-04-24_131026.jpg,2013-04-24_131107.jpg', GETDATE(), 100, 9443, '')
  382. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  383. values( 44, '联想(Lenovo)Z480AF 14.0英寸笔记本电脑(B960 2G 500G 1G独显 摄像头 DVD刻录 Linpus Lite)珊瑚蓝', '联想', 3599.00, 3199.00, 400.00, '2013-04-24_131229.jpg,2013-04-24_131253.jpg,2013-04-24_131318.jpg', GETDATE(), 100, 9443, '')
  384. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  385. values( 44, '联想(Lenovo)G470AL 14.0英寸笔记本电脑(i5-2450M 2G 500G 1G独显 摄像头 DVD刻录 Linux)黑色', '联想', 6128.00, 5988.00, 140.00, '2013-04-24_130332.jpg,2013-04-24_130435.jpg,2013-04-24_130507.jpg', GETDATE(), 100, 9443, '')
  386. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  387. values( 44, 'ThinkPad E430C(3365-A16)14英寸笔记本电脑(i3-3110M 2G 500G GT630 2G独显 蓝牙 摄像头)', '联想', 3699.00, 3599.00, 100.00, '2013-04-24_130633.jpg,2013-04-24_130708.jpg,2013-04-24_130743.jpg', GETDATE(), 100, 9443, '')
  388. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  389. values( 44, '联想(Lenovo) Y500N 15.6英寸笔记本电脑 (i5-3230M 8G 1T 4G独显 DVD刻录 Win8)灰色', '联想', 6699.00, 6399.00, 300.00, '2013-04-24_130949.jpg,2013-04-24_131026.jpg,2013-04-24_131107.jpg', GETDATE(), 100, 9443, '')
  390. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  391. values( 44, '联想(Lenovo)Z480AF 14.0英寸笔记本电脑(B960 2G 500G 1G独显 摄像头 DVD刻录 Linpus Lite)珊瑚蓝', '联想', 3599.00, 3199.00, 400.00, '2013-04-24_131229.jpg,2013-04-24_131253.jpg,2013-04-24_131318.jpg', GETDATE(), 100, 9443, '')
  392. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  393. values( 44, '联想(Lenovo)G470AL 14.0英寸笔记本电脑(i5-2450M 2G 500G 1G独显 摄像头 DVD刻录 Linux)黑色', '联想', 6128.00, 5988.00, 140.00, '2013-04-24_130332.jpg,2013-04-24_130435.jpg,2013-04-24_130507.jpg', GETDATE(), 100, 9443, '')
  394. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  395. values( 44, 'ThinkPad E430C(3365-A16)14英寸笔记本电脑(i3-3110M 2G 500G GT630 2G独显 蓝牙 摄像头)', '联想', 3699.00, 3599.00, 100.00, '2013-04-24_130633.jpg,2013-04-24_130708.jpg,2013-04-24_130743.jpg', GETDATE(), 100, 9443, '')
  396. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  397. values( 44, '联想(Lenovo) Y500N 15.6英寸笔记本电脑 (i5-3230M 8G 1T 4G独显 DVD刻录 Win8)灰色', '联想', 6699.00, 6399.00, 300.00, '2013-04-24_130949.jpg,2013-04-24_131026.jpg,2013-04-24_131107.jpg', GETDATE(), 100, 9443, '')
  398. insert into poduct (bclassid, name,brand,price,memberprice,differprice,picture, time,stock,hit,detail)
  399. values( 44, '联想(Lenovo)Z480AF 14.0英寸笔记本电脑(B960 2G 500G 1G独显 摄像头 DVD刻录 Linpus Lite)珊瑚蓝', '联想', 3599.00, 3199.00, 400.00, '2013-04-24_131229.jpg,2013-04-24_131253.jpg,2013-04-24_131318.jpg', GETDATE(), 100, 9443, '')
  400. -----产品评论表
  401. --产品编号1评论
  402. insert into guest( name, content,productid, time,ip) values( 'aaa', '物品真好用,下次还会光临的', 1, GETDATE(), '192.168.0.1')
  403. insert into guest( name, content,productid, time,ip) values( 'bbb', '物品真好用,下次还会光临的', 1, GETDATE(), '192.168.0.2')
  404. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 1, GETDATE(), '192.168.0.3')
  405. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 1, GETDATE(), '192.168.0.4')
  406. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 1, GETDATE(), '192.168.0.3')
  407. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 1, GETDATE(), '192.168.0.4')
  408. --产品编号2评论
  409. insert into guest( name, content,productid, time,ip) values( 'aaa', '物品真好用,下次还会光临的', 2, GETDATE(), '192.168.0.1')
  410. insert into guest( name, content,productid, time,ip) values( 'bbb', '物品真好用,下次还会光临的', 2, GETDATE(), '192.168.0.2')
  411. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 2, GETDATE(), '192.168.0.3')
  412. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 2, GETDATE(), '192.168.0.4')
  413. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 2, GETDATE(), '192.168.0.3')
  414. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 2, GETDATE(), '192.168.0.4')
  415. --产品编号3评论
  416. insert into guest( name, content,productid, time,ip) values( 'aaa', '物品真好用,下次还会光临的', 3, GETDATE(), '192.168.0.1')
  417. insert into guest( name, content,productid, time,ip) values( 'bbb', '物品真好用,下次还会光临的', 3, GETDATE(), '192.168.0.2')
  418. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 3, GETDATE(), '192.168.0.3')
  419. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 3, GETDATE(), '192.168.0.4')
  420. --产品编号6评论
  421. insert into guest( name, content,productid, time,ip) values( 'aaa', '物品真好用,下次还会光临的', 6, GETDATE(), '192.168.0.1')
  422. insert into guest( name, content,productid, time,ip) values( 'bbb', '物品真好用,下次还会光临的', 6, GETDATE(), '192.168.0.2')
  423. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 6, GETDATE(), '192.168.0.3')
  424. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 6, GETDATE(), '192.168.0.4')
  425. --产品编号10评论
  426. insert into guest( name, content,productid, time,ip) values( 'aaa', '物品真好用,下次还会光临的', 10, GETDATE(), '192.168.0.1')
  427. insert into guest( name, content,productid, time,ip) values( 'bbb', '物品真好用,下次还会光临的', 10, GETDATE(), '192.168.0.2')
  428. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 10, GETDATE(), '192.168.0.3')
  429. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 10, GETDATE(), '192.168.0.4')
  430. --产品编号16评论
  431. insert into guest( name, content,productid, time,ip) values( 'aaa', '物品真好用,下次还会光临的', 16, GETDATE(), '192.168.0.1')
  432. insert into guest( name, content,productid, time,ip) values( 'bbb', '物品真好用,下次还会光临的', 16, GETDATE(), '192.168.0.2')
  433. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 16, GETDATE(), '192.168.0.3')
  434. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 16, GETDATE(), '192.168.0.4')
  435. --产品编号19评论
  436. insert into guest( name, content,productid, time,ip) values( 'aaa', '物品真好用,下次还会光临的', 19, GETDATE(), '192.168.0.1')
  437. insert into guest( name, content,productid, time,ip) values( 'bbb', '物品真好用,下次还会光临的', 19, GETDATE(), '192.168.0.2')
  438. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 19, GETDATE(), '192.168.0.3')
  439. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 19, GETDATE(), '192.168.0.4')
  440. --产品编号22评论
  441. insert into guest( name, content,productid, time,ip) values( 'aaa', '物品真好用,下次还会光临的', 22, GETDATE(), '192.168.0.1')
  442. insert into guest( name, content,productid, time,ip) values( 'bbb', '物品真好用,下次还会光临的', 22, GETDATE(), '192.168.0.2')
  443. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 22, GETDATE(), '192.168.0.3')
  444. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 22, GETDATE(), '192.168.0.4')
  445. --产品编号28评论
  446. insert into guest( name, content,productid, time,ip) values( 'aaa', '物品真好用,下次还会光临的', 28, GETDATE(), '192.168.0.1')
  447. insert into guest( name, content,productid, time,ip) values( 'bbb', '物品真好用,下次还会光临的', 28, GETDATE(), '192.168.0.2')
  448. insert into guest( name, content,productid, time,ip) values( 'ccc', '物品真好用,下次还会光临的', 28, GETDATE(), '192.168.0.3')
  449. insert into guest( name, content,productid, time,ip) values( 'ddd', '物品真好用,下次还会光临的', 28, GETDATE(), '192.168.0.4')
  450. -----用户订单信息表
  451. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  452. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  453. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  454. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  455. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  456. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  457. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  458. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  459. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  460. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  461. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  462. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  463. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  464. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  465. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  466. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  467. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  468. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  469. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  470. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  471. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  472. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  473. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  474. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  475. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  476. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  477. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  478. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  479. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  480. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  481. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  482. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  483. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  484. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  485. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  486. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  487. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  488. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  489. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  490. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  491. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  492. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  493. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  494. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  495. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  496. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  497. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  498. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  499. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  500. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  501. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  502. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  503. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  504. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  505. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  506. values( 3, 285.00, GETDATE(), 'aaa111', 'aaa111@live.cn', '13576827625', '475000', '河南郑州市金水区金水路27号', '0', '', 14, '顺丰', '网银', '')
  507. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  508. values( 4, 2778.00, GETDATE(), 'bbb222', 'bbb222@live.cn', '11814895599', '475001', '河南郑州市郑东新区花园路20号', '0', '', 14, '圆通快递', '支付宝', '')
  509. insert into orders(userid,sumprice,orderdate,linkman,email,phone,postalcode,address, result,remark,songhuoqixian,songhuofangshi,fukuanfangshi, error)
  510. values( 5, 5988.00, GETDATE(), 'ccc333', 'ccc333@live.cn', '11111111111', '475002', '河南郑州市金水区金水路555号', '0', '', 14, '圆通快递', '支付宝', '')
  511. -----用户订单列表
  512. insert into orderlist(orderid,productid,quantity,unitcost,productname)
  513. values ( 1, 1, 1, 145.00, '飞利浦(PHILIPS)Style系列头戴耳机SHL5002(绿灰色)')
  514. insert into orderlist(orderid,productid,quantity,unitcost,productname)
  515. values ( 1, 6, 2, 70.00, '三星I9300 i9100 N7100 I9003 I9008L S5830 I9220耳机')
  516. insert into orderlist(orderid,productid,quantity,unitcost,productname)
  517. values ( 2, 10, 1, 739.00, '西部数据(Western Digital)绿盘 1TB WD10EURX SATA 3Gb/s 64MB 台式机监控硬盘')
  518. insert into orderlist(orderid,productid,quantity,unitcost,productname)
  519. values ( 2, 19, 1, 2039.00, '英特尔(Intel)32纳米 酷睿i7 四核处理器 i7 2600K盒装CPU')
  520. insert into orderlist(orderid,productid,quantity,unitcost,productname)
  521. values ( 3, 28, 1, 5988.00, '联想(Lenovo)G470AL 14.0英寸笔记本电脑(i5-2450M 2G 500G 1G独显 摄像头 DVD刻录 Linux)黑色')
  522. -----新闻表
  523. insert into news(title, content, time, type)
  524. values( '本站新闻1', '
  525. 111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
  526. 111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
  527. 111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
  528. 111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
  529. 111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
  530. 111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
  531. ', GETDATE(), '本站')
  532. insert into news(title, content, time, type)
  533. values( '本站新闻2', '
  534. 222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  535. 222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  536. 222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  537. 222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  538. 222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  539. 222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  540. ', GETDATE(), '本站')
  541. insert into news(title, content, time, type)
  542. values( '娱乐新闻1', '
  543. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  544. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  545. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  546. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  547. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  548. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  549. ', GETDATE(), '娱乐')
  550. insert into news(title, content, time, type)
  551. values( '娱乐新闻2', '
  552. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  553. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  554. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  555. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  556. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  557. 333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333
  558. ', GETDATE(), '娱乐')
  559. insert into news(title, content, time, type)
  560. values( '财经新闻1', '
  561. 4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  562. 4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  563. 4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  564. 4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  565. 4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  566. 4444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  567. ', GETDATE(), '财经')
  568. insert into news(title, content, time, type)
  569. values( '财经新闻2', '
  570. 444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  571. 444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  572. 444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  573. 444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  574. 444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  575. 444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444
  576. ', GETDATE(), '财经')
  577. insert into news(title, content, time, type)
  578. values( '国外新闻1', '
  579. 555555555555555555555555555555555555555555555555555555555555
  580. 555555555555555555555555555555555555555555555555555555555555
  581. 555555555555555555555555555555555555555555555555555555555555
  582. 555555555555555555555555555555555555555555555555555555555555
  583. 555555555555555555555555555555555555555555555555555555555555
  584. 555555555555555555555555555555555555555555555555555555555555
  585. ', GETDATE(), '国外')
  586. insert into news(title, content, time, type)
  587. values( '国外新闻2', '
  588. 555555555555555555555555555555555555555555555555555555555555
  589. 555555555555555555555555555555555555555555555555555555555555
  590. 555555555555555555555555555555555555555555555555555555555555
  591. 555555555555555555555555555555555555555555555555555555555555
  592. 555555555555555555555555555555555555555555555555555555555555
  593. 555555555555555555555555555555555555555555555555555555555555
  594. ', GETDATE(), '国外')
  595. insert into news(title, content, time, type)
  596. values( '股票新闻1', '
  597. 666666666666666666666666666666666666666666666666666666666666
  598. 666666666666666666666666666666666666666666666666666666666666
  599. 666666666666666666666666666666666666666666666666666666666666
  600. 666666666666666666666666666666666666666666666666666666666666
  601. 666666666666666666666666666666666666666666666666666666666666
  602. 666666666666666666666666666666666666666666666666666666666666
  603. ', GETDATE(), '股票')
  604. insert into news(title, content, time, type)
  605. values( '股票新闻2', '
  606. 666666666666666666666666666666666666666666666666666666666666
  607. 666666666666666666666666666666666666666666666666666666666666
  608. 666666666666666666666666666666666666666666666666666666666666
  609. 666666666666666666666666666666666666666666666666666666666666
  610. 666666666666666666666666666666666666666666666666666666666666
  611. 666666666666666666666666666666666666666666666666666666666666
  612. ', GETDATE(), '股票')
  613. insert into news(title, content, time, type)
  614. values( '商机新闻1', '
  615. 777777777777777777777777777777777777777777777777777777777777
  616. 777777777777777777777777777777777777777777777777777777777777
  617. 777777777777777777777777777777777777777777777777777777777777
  618. 777777777777777777777777777777777777777777777777777777777777
  619. 777777777777777777777777777777777777777777777777777777777777
  620. 777777777777777777777777777777777777777777777777777777777777
  621. ', GETDATE(), '商机')
  622. insert into news(title, content, time, type)
  623. values( '商机新闻2', '
  624. 777777777777777777777777777777777777777777777777777777777777
  625. 777777777777777777777777777777777777777777777777777777777777
  626. 777777777777777777777777777777777777777777777777777777777777
  627. 777777777777777777777777777777777777777777777777777777777777
  628. 777777777777777777777777777777777777777777777777777777777777
  629. 777777777777777777777777777777777777777777777777777777777777
  630. ', GETDATE(), '商机')
  631. --回复表
  632. insert into reply( content, time,guestid) values( '谢谢您的大力支持', '2012-3-2', 1)
  633. insert into reply( content, time,guestid) values( '谢谢您的大力支持', '2012-3-2', 1)
  634. insert into reply( content, time,guestid) values( '谢谢您的大力支持', '2012-3-2', 2)
  635. insert into reply( content, time,guestid) values( '谢谢您的大力支持', '2012-3-2', 2)
  636. insert into reply( content, time,guestid) values( '谢谢您的大力支持', '2012-3-2', 3)
  637. insert into reply( content, time,guestid) values( '谢谢您的大力支持', '2012-3-2', 3)
  638. --购物车表
  639. insert into shoppingcar values( 3, 1, 2)
  640. insert into shoppingcar values( 3, 18, 3)
  641. go
  642. -------------------------------------------------------设置级联
  643. --删除product表的外键约束(poduct表和bclass)
  644. alter table poduct
  645. drop constraint FK__poduct__bclassid__0DAF0CB0
  646. go
  647. --创建product表的级联外键约束
  648. alter table poduct
  649. add constraint FK_poduct_bclassid foreign key(bclassid) references bclass(bclassid)
  650. --设置为级联
  651. on delete cascade
  652. on update cascade
  653. go
  654. --删除guest表的外键约束(guest表和poduct)
  655. alter table guest
  656. drop constraint FK__guest__productid__164452B1
  657. go
  658. --创建guest表的级联外键约束
  659. alter table guest
  660. add constraint FK_guest_productid foreign key(productid) references poduct(productid)
  661. --设置为级联
  662. on delete cascade
  663. on update cascade
  664. go
  665. --删除orderlist表的外键约束(orderlist表和poduct表)
  666. alter table orderlist
  667. drop constraint FK__orderlist__produ__20C1E124
  668. go
  669. --创建orderlist表的级联外键约束
  670. alter table orderlist
  671. add constraint FK_orderlist_productid foreign key(productid) references poduct(productid)
  672. --设置为级联
  673. on delete cascade
  674. on update cascade
  675. go
  676. --删除orderlist表的外键约束(orders表和users表)
  677. alter table orders
  678. drop constraint FK__orders__userid__1B0907CE
  679. go
  680. --创建orderlist表的级联外键约束
  681. alter table orders
  682. add constraint FK_orders_userid foreign key(userid) references users(userid)
  683. --设置为级联
  684. on delete cascade
  685. on update cascade
  686. go
  687. --删除reply表的外键约束(reply表和guest表)
  688. alter table reply
  689. drop constraint FK__reply__guestid__25869641
  690. go
  691. --创建reply表的级联外键约束
  692. alter table reply
  693. add constraint FK_reply_guestid foreign key(guestid) references guest(guestid)
  694. --设置为级联
  695. on delete cascade
  696. on update cascade
  697. go
  698. --删除shoppingcar表的外键约束(shoppingcar表和users表)
  699. alter table shoppingcar
  700. drop constraint FK__shoppingc__useri__2A4B4B5E
  701. go
  702. --创建shoppingcar表的级联外键约束
  703. alter table shoppingcar
  704. add constraint FK_shoppingcar_userid foreign key(userid) references users(userid)
  705. --设置为级联
  706. on delete cascade
  707. on update cascade
  708. go
  709. --删除shoppingcar表的外键约束(shoppingcar表和poduct表)
  710. alter table shoppingcar
  711. drop constraint FK__shoppingc__produ__2B3F6F97
  712. go
  713. --创建shoppingcar表的级联外键约束
  714. alter table shoppingcar
  715. add constraint FK_shoppingcar_productid foreign key(productid) references poduct(productid)
  716. --设置为级联
  717. on delete cascade
  718. on update cascade
  719. go
  720. select* from users
  721. select* from aclass
  722. select* from bclass
  723. select* from poduct
  724. select* from news
  725. select* from orders
  726. select* from orderlist
  727. select* from guest
  728. select* from reply
  729. select* from shoppingcar
  730. update shoppingcar set num= num+ 1 where userid= 7 and productid= 1

 


转载:https://blog.csdn.net/zhangchen124/article/details/105408707
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场