22,301
社区成员




alter table tb
add constraint df_a default 默认值 for username
create table tabeName(id varchar(10) not null default '',b int not null default 0)
create table tb(id int not null identity(1,1),a money not null default 0,b int not null default 0)