SELECT adc.*,c.CustomerName FROM dbo.XYZ adc INNER JOIN PQR c ON c.CustomerNumber = adc.CustomerNumber
when i execute this query it displays all columns from XYZ table and CustomerName from PQR table
But when i execute report to select column, it display’s all columns from PQR table but none column from XYZ table
So Kindly help me to Fetch columns from PQR as well as XYZ table
normally this should work without problems.
Do you see the problem already in the preview of your dataset?
Do you have set filters in your dataset?
Are the data types of the column “Customernumber” in both tables the same?
If you generate the report as HTML Output, are there error messages at the end of the report?