hello;
how I Join three tabble wiyh sql querry
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Niradhip ChakrabortyPosted Jun 4, 2009, 4:12 PM
The query is as follows:
SELECT Distinct *
from Customer_Details
Left Outer join EMAS
on Customer_Details.street_name = EMAS.street_name
Left Outer join work_orders
on Customer_Details.ID = work_orders.customer_ID
where Proceed_Retrofit = 'yes'
You also can check the folowing article:
1.http://msdn.microsoft.com/en-us/library/ms191430.aspx