I have two tables (equipment & software) that I want to do an INNER JOIN on. They both have a field called EQCN. It is a text field. I get the following error:
The data types text and text are incompatible in the equal to operator.
There has to be a way around this.
Change the data types for these columns to
varchar(max).From Microsoft: