db2中using用法
各位大哥大姐,谁知道db2中有没有类似oracle中using的用法。
oracle中 select item11,item22 from table1 full join table2 using(item11) 的写法
在db2中应该怎么写?
我写成 select table1.item11, table2.item22 from table1 full join table2 on table1.item11=table2.item11
但性能、效率非常低下。、
应该怎么写