Loading

摘要: MySQL day03 1、约束 1.1、唯一性约束(unique) * 唯一约束修饰的字段具有唯一性,不能重复。但可以为NULL。 * 案例:给某一列添加unique drop table if exists t_user; create table t_user( id int, usernam 阅读全文
posted @ 2022-12-14 17:50 ThankCAT 阅读(25) 评论(0) 推荐(0) 编辑