输入banner图图片脚本导航/分类

mysql_2


Query OK, 0 rows affected (0.04 sec)
Records: 0  Duplicates: 0  Warnings: 0
限定字段取值范围

mysql> alter table member add sex enum(‘1‘,‘2‘) not null;

mysql> alter table member add constraint score check(score>=0 and score<=100);
Query OK, 0 rows affected (0.04 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql_2

标签: