BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
podarum
Quartz | Level 8

Hi,  I'm merging 2 tables in proc sql and I want the new  table to have a forced value in one field.

So mergin Table A and Table B to create Table C, and I want to force a field called MG_typ found in Table A to be all = 'Residential'.. how can I do that..

similar to simply assigning MG_typ = 'Residential' in base SAS. 

Thanks


1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Depends on if the variable exists in the other table at all or in both already.

If in neither table then the following will work:

select 'Residential' as MG_typ

If it's missing in all of table B, but present in All of Table A you could use the coalesce function:

select coalesce(MG_type, "Residential") as MG_Type

Otherwise some sort of Case Statement is required.

View solution in original post

3 REPLIES 3
stat_sas
Ammonite | Level 13

Use Case statement.

Reeza
Super User

Depends on if the variable exists in the other table at all or in both already.

If in neither table then the following will work:

select 'Residential' as MG_typ

If it's missing in all of table B, but present in All of Table A you could use the coalesce function:

select coalesce(MG_type, "Residential") as MG_Type

Otherwise some sort of Case Statement is required.

podarum
Quartz | Level 8

Thank you Reeza

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1332 views
  • 0 likes
  • 3 in conversation