1.创建如下数据库脚本 --创建用户信息表 --编号,用户名,密码,年龄,性别,昵称,手机,地址,管理员,图像地址 create table users ( id ) primary key, username ) not null, password ) not null, age ) not null, sex ) not null, nickname ) not null, mobile ) not null, address ) not null, supper ) not null,…