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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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