BookmarkSubscribeRSS Feed
KC_16
Fluorite | Level 6

Hi,

 

I have the following error message, any idea how I would resolve please?

 

ERROR: The Equality operator must compare operands of the same type

 

proc sql ;
create table work.apps as
select
a.*,
b.income, b.date
from work.comps as a left join work.apps_ytd as b
on a.id = b.urn;
quit;

3 REPLIES 3
novinosrin
Tourmaline | Level 20

It seems ID and urn are not of the same datatypes. Please do proc contents of both and let us know which one is which

Shmuel
Garnet | Level 18

In your condition on a.id = b.urn both side should be of same type, either numeric or alphanumeric.

assuming a.id is numeric and b.urn contains digits you can replace condition into:

      a.id = input(b.urn , best.) thus transforming the alphanumeric into numeric.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1988 views
  • 0 likes
  • 4 in conversation