BookmarkSubscribeRSS Feed
napatel0911
Calcite | Level 5

data ds2d(keep=subjid patnum usubjid);

set ivdata;

set dmdata;

run;

proc sql;

create table dsdt(keep= usubjid)  as select dms.patnum dms.usubjid dms.subjid from ds2d as dms where dms.patnum=input(dms.subjid,8.);

run;

 

where condition doesn't satisfied.

 

In short, I want to set dsdt.usubjid as ds2d.usubjid where ds2d.patnum(Numeric data type) and ds2d.subjid(character datatype) must be same.

2 REPLIES 2
Tom
Super User Tom
Super User

@napatel0911 wrote:

In short, I want to set dsdt.usubjid as ds2d.usubjid where ds2d.patnum(Numeric data type) and ds2d.subjid(character datatype) must be same.


This is what it looks like you are trying to do.

 

proc sql ;
  create table dsdt as
    select usubjid
    from ds2d 
    where patnum = input(subjid,32.)
  ;
quit;

I would describe that as finding the set of USUBJID values for the cases where the numeric PATNUM is the same as the character SUBJID.  If that is not what you are trying to do then rephrase the question to make it clearer. Posting sample input and output data will help.

 

If you are finding that there are no records that match the WHERE condition then you should post some example data that you think SHOULD match and perhaps someone can explain why it doesn't.

 

napatel0911
Calcite | Level 5
Hi!! Thank you for your reply. I will post some example also asap..

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 1249 views
  • 1 like
  • 2 in conversation