+ 2
can you join 3 or more tables
33 Respostas
+ 3
yes
+ 3
Yes. you can join many tables.
ex:
select *
from a inner join
b on a.field1 = b.field1
inner join
C on a.field2 = C.field2
+ 2
yes
+ 2
just by simply adding comma (, )
+ 2
yes. there are 3 types of joins. inner, left outer and right outer. all these types can be used to join multiple tables..
+ 2
We can join n number table but we have to vigilant about relationship of primary keys in tables
+ 2
I believe so .
+ 2
why not?
+ 1
yes
+ 1
yes
+ 1
yes
+ 1
yes
+ 1
yes
+ 1
yes we can join more than 2 tables
+ 1
yes
+ 1
yes
+ 1
I think this is gonna work :select custid, name, product, price from customer_detail ,mall, theater where custid=mall. custid
+ 1
Surely
+ 1
you can join as many tables as you want
+ 1
yes