输出的SQL语句是:
drop table if exists STUDENTS
drop table if exists USERS
create table STUDENTS (
sid varchar(8) not null,
sname varchar(255),
gender varchar(255),
birthday date,
address varchar(255),
primary key (sid)
)
create table USERS (
uid integer not null auto_increment,
username varchar(255),
password varchar(255),
primary key (uid)
)
//把表示生成表结构第一个true改为false,把第二个表示输出SQL语句也改成false
export.create(false, false);