How To Join Four(4) Tables in Sql Server
Hi Developers,below is my code for joining 3 sql tables.
select * from tblCostSheet_WithoutComponent cs inner join tbl_fr fr on cs.enquiryid=fr.enquiryid inner join tbl_enquiryregister er on fr.enquiryid=er.enquiryid where cs.status='A' and cs.Approval_status='Approved' and costsheet_status='Pending Quotation' order by cs.costsheet_id asc
I want to join 4 sql tables.instead of my code.
So how to add one more table friends.give me some solution.
Thanking you,
Paul.S