2023年1月17日
摘要: Oracle(+)号用法 select * from t_A a,t_B b where a.id=b.id(+); select * from t_A a left join t_B b on a.id = b.id; + 表示补充,即哪个表有加号,这个表就是匹配表。如果加号写在右表,左表就是全部 阅读全文
posted @ 2023-01-17 10:17 洞幺人生 阅读(686) 评论(0) 推荐(0) 编辑