Hello everyone,I'm comparing data of 2 columns in 2 tables from 2 databases. The columns have the same DDL and they ara Text type.The request I'm using is select t1.SPADM_SP_CODE_FK_PK, t1.SPADM_LIBELLE, t2.SPADM_SP_CODE_FK_PK,t2.SPADM_LIBELLEfrom THERIAQUE_DEST.theriaque.SPADM_SPECIALITE_MODEADM t1inner join THERIAQUE_MAJ.theriaque.SPADM_SPECIALITE_MODEADM t2 on t1.SPADM_SP_CODE_FK_PK = t2.SPADM_SP_CODE_FK_PKwhere cast(t1.SPADM_LIBELLE as varchar(max)) <> cast(t2.SPADM_LIBELLE as varchar(max))
Normally I must have a difference because the first column contains (350 mg/m²) and the second column contains (350 mg/m2) but nothing is returned.Can anyone tell me what I must to do resolve this problem