摘要: 非空约束: create table temp( id int not null, name varchar(20) not null default 'adc', sex char null )//给id,name加上非空约束 alter table temp modify sex varchar(2) not null;... 阅读全文
posted @ 2016-08-03 14:50 风雨缠舟 阅读(160) 评论(0) 推荐(0) 编辑