I am using Inner Join to Join 3 Tables. But when I execute this, I got error
Syntax Error (Missing Operator) in query expression 'a.Group_ID = b.Group_ID INNER JOIN VendorList AS c ON a.Vendor_Id = c.Vendor_I'
How do I use multiple inner joins in C# with MS Access?
str = "Select a.ID, b.Group_Name, a.Voucher_No, a.Bill_No, a.Date, c.Vendor_Name, a.Amount FROM BillTable a INNER JOIN GroupName AS b ON a.Group_ID = b.Group_ID INNER JOIN VendorList AS c ON a.Vendor_Id = c.Vendor_Id ";
da = new OleDbDataAdapter(str, cn);