BookmarkSubscribeRSS Feed
Mike7
Calcite | Level 5

Proc SQL;
create table moth as
Select distinct a.motherid, a.perid as kidid,
a.tage as kidage, a.esex as kidgender, a.EHLTSTAT as kid_currhealth ,
a.EHOSPNIT as kid_nightsinhosp, a.EVISDOC as kid_docvisit
from momkid a, wave5top b
where a.motherid=b.perid
and a.tage lt 18
order by a.motherid, a.tage;
Quit;

 

Th log is not showing any errors its just showing 0 observations 

0 rows 7 columns

3 REPLIES 3
Tom
Super User Tom
Super User

No records met your WHERE criteria. Without seeing the data hard to tell if there is any error or not.

robert215
Calcite | Level 5

Check if you have kidid in table momkid ? (a.kidid = b.kidid)

ballardw
Super User

Some Possible causes

1) No matching Momid = Perid

2) no tage lt 18

or

3) None of the matching Momid=Perid have tage lt 18

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!

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