code259.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>sql</title>
</head>
<body>
<%--
创建数据库的sql语句
create table bk_user(
id int auto_increment not null primary key COMMENT '自增编号',
username varchar(20) not null comment '用户名称',
pwd varchar(20) not null comment '用户密码',
gender varchar(2) comment '性别',
email varchar(50) comment '邮箱',
telephone varchar(20) comment '电话',
introduce varchar(100) comment '用户简介',
activecode varchar(50) comment '注册激活码',
state int(11) default 0 comment '用户状态,1:激活,0:未激活',
role varchar(10) comment '用户角色:普通用户,超级用户',
registTime timestamp not null comment '注册时间'
)
create table bk_products(
id int auto_increment not null primary key comment '自增id',
proid varchar(100) not null comment '商品id',
proname varchar(40) not null comment '名称',
price double comment '价格',
category varchar(40) comment '分类',
pnum int(11) comment '库存',
imgurl varchar(100) comment '图片地址',
description varchar(255) comment '商品描述'
)
create table bk_order(
id int auto_increment not null primary key comment '自增id',
orderid varchar(100) not null comment '订单id',
money double comment '价格',
receiveraddress varchar(255) comment '收货地址',
receivername varchar(20) comment '收货人姓名',
receiverphone varchar(20) comment '收货人电话',
paystate int(11) comment '订单状态:1:已支付,0:未支付',
ordertime timestamp comment '订单生成时间',
userid int(11) comment '用户id'
)
create table bk_orderitem(
orderid varchar(100) not null comment '订单id',
proid varchar(100) not null comment '商品id',
buynum int(11) comment '购买数量',
primary key (orderid,proid)
)
create table bk_notice(
noticeid int auto_increment not null primary key comment '自增编号',
title varchar(50) not null comment '公告标题',
details varchar(255) comment '公告内容',
ntime varchar(20) comment '公告时间'
)
--%>
</body>
</html>