-
MySql命令的执行流程查看全部
-
课程回顾查看全部
-
函数体查看全部
-
begin...end...查看全部
-
通过试用DELIMITER来改变SQL语句的结束符号: DELIMITER // 将结束符号改为;查看全部
-
alter table tab2 drop primary key alter table tab2 drop foreign key user_key;查看全部
-
添加主键约束 constraint unique key alter table table2 add constraint pk_user2_id primary key (id); alter table table2 alter age set default 23; alter table table2 alter age drop default;查看全部
-
alter table tab_name add colunmn col_name column_defintion first after col_name alter table tab1 add colunmn sex varchar(10) alter table tab2 drop sex,age ;查看全部
-
foreign key (pid) references tb2 (id) foreign key (pid) references tb2(id) foreign key references查看全部
-
外键约束FOREIGN KEY foreign key foreign key foreign key foreign key查看全部
-
create table tb6( id smallint unsigned auto_increment primary key,username varchar(20) not null unique key,sex enum('1','2','3') default '3');查看全部
-
unique key create table tb5( id samlint unsigned auto_increment primary key,username varchar(30));查看全部
-
primary key create tab4(id small unsigned primary key,username varchar(20)); create tab4(id samll unsigned auto_increment primary key,username varchar(30));查看全部
-
create table tb2( username varcha(20) not null, ege int ) insert tb2 values('tom ', null); inser tb2 values(null,23); error查看全部
-
insert into tb1 values('tom' ,23,3333.32) insert tb1 values('tom',33,3333.33); insert tb1(username,salary) values('john',3444.33); select * from tb1查看全部
举报
0/150
提交
取消