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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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