Thank you so much for your great help!
I want to fetch multiple values of multiple tables using power query in excel. And also used join condition in this query. Apprx 2m rows to load data into excel sheet. Please see below example of my query which is exactly similar to my scenario.
select col1,col2,col3...coln
from table1 a
left join table2 b
on a.uid=b.uid
left join table c
on b.uid=a.uid
left join table d
d.xid=b.yid
where conditions,....
and ...
,
,
and ... ;
Regards,
nk