hi Mahesh, for sql (inner) joins, try
select t1.columnName, t2.columName, .. etc
from t1
join t2 on
t1.columnX = t2.column
repeat join for more table joins
hope this works
hi Mahesh, for sql (inner) joins, try
select t1.columnName, t2.columName, .. etc
from t1
join t2 on
t1.columnX = t2.column
repeat join for more table joins
hope this works