在Sql server数据库里面int unsigned auto_increment
Create Table Users(
UserID int unsigned auto_increment not null,
Password varchar(16) not noll,
)
这两个单词对吗?我要实现只显示正数,没有负数那种,源码就是这样,但是不能执行
Create Table Users(
UserID int unsigned auto_increment not null,
Password varchar(16) not noll,
如果我要记录上亿万条的信息,那数据类型要怎么写?