We have 2 tables with identical fields, but 1 table has an additional space at the end of the field due to our inhouse application adding the space.
The fields are character varying, so I cannot specify a length.
In Access, the following worked with the INNER JOIN, but I cannot get it to work in SSRS: ON table1.field1 + " " = table2.field1
To recap, I need to INNER JOIN 2 fields, but 1 of the fields has an extra space on the right hand/end of the field.
Thanks in advance