+ 1
How to connect three tables in oracle
I want to join three tables
3 ответов
+ 11
You can try these queries :
1• select a.acc, b.acc, c.acc from a, b,c where a.acc=b.acc and c.acc = a.acc;
2• select a.acc, b.acc, c.acc JOIN on a.acc=b.acc JOIN on c.acc = a.acc;
+ 8
@Ankit You are welcome
+ 2
thanks bro