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

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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