摘要:
1. 补 约束: not null default(不是约束) unique: 名字 primary key: not null + unique foreign key check : 检查约束 alter table student add constraint Check_STUNAME_LE 阅读全文
摘要:
1. 子查询: select 子查询 -- select 子查询 select t1.ename, (select dname from dept t2 where t2.deptno = t1.deptno) from emp t1 -- 限制: 不能对应多行 select dname, (sel 阅读全文