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.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 1824 views
  • 0 likes
  • 4 in conversation