• 2020-10-28
mysql如何设置默认值

mysql设置默认值的方法:用mysql建数据表设置默认值,代码为【stuSex varchar(2) default ‘男‘ check(stuSex in(‘男‘, ‘女‘))】。...

11