摘要: 表约束:对用户插入数据进行约束 (表约束要在创建表时创建约束) 1、默认值约束: default + ‘默认值’ 例:让地址的默认值为“淄博市” create table student( id int, address default '淄博市' ); 注:设置默认值之后,可以给数据内容插入内容, 阅读全文
posted @ 2021-01-08 11:26 公雪 阅读(243) 评论(0) 推荐(0) 编辑