↓
CSZ.NET
post
proj
tag
post
proj
tag
Mysql设置字段自增
将
ss
表中的
sid
字段设置为自增
ALTER
TABLE
ss
MODIFY
COLUMN
sid
INT
AUTO_INCREMENT
PRIMARY
KEY
;
↑