在线调问卷系统 在线调问卷系统mysql数据库创建语句 在线调问卷系统oracle数据库创建语句 在线调问卷系统sqlserver数据库创建语句 在线调问卷系统mysql数据库版本源码: 超级管理员表创建语句如下: create table t_admin( id int primary key auto_increment comment '主键', username varchar(100) comment '超级管理员账号', password varchar(100) comment '超级管理员密码' ) comment '超级管理员'; insert into t_admin(username,password) values('admin','123456'); 分类表创建语句如下: create table t_bk( id int primary key auto_increment comment '主键', customerId int comment '用户' ) comment '分类'; 建议表创建语句如下: create table t_contact( id int primary key auto_increment comment '主键', phone varchar(100) comment '联系方式', content varchar