1.内连接之等值相等
去除笛卡尔集的方法:
select * from one oo, two tt where oo.id=tt.oid;
select * from one oo inner join two tt on oo.id=tt.oid where oo.age >16 and …;------join on即可,inner 可以省略不写,与多表联查约束主外键一样,on只写主外键,如果后面还有条件就加where
2.投影查询:查询对象的某个或者某些属性
6-9到6-13没看