create table maxs(
friend_max int not null auto_increment,
diary_max int not null,
album_max int not null,
photo_max int not null,
comment_max int not null,
visit_max int not null,
user_max int not null,
head_max int not null,
p_comment_max int not null,
primary key(friend_max)
)
还有,别忘了选择数据库,就是在开头儿的地方加上 “use 数据库名”。
用sql语句啊!创建数据库:create database xxx
use xxx
创建表:create table yyy(字段1 字段1的参数类型 ,字段2 字段2的参数类型 ,...)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)