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

Hello everyone,

 

I am trying to bring together two tables using the following code:

 

proc sql;
      create table my.mvabpavement2008 as
      select *
      from  my.mvab2008p mvab, my.pavement2008 pave
where mvab.dirtra = pave.direction and mvab.REFERENCE_NO >= pave.from_lhrs and pave.to_lhrs >= mvab.REFERENCE_NO;
quit;

However, when running that code I get duplicate results especially in cases where REFERENCE_NO= from_lhrs and REFERENCE_NO (not)equal to_lhrs and the vice versa. I would think that this paraphrasing would indicate that unless statements are satisfied it would not produce an observation. What am I doing wrong?

 

A sample is attached.

1 ACCEPTED SOLUTION

Accepted Solutions
iliyan
Obsidian | Level 7

EDIT, The solution is:

where mvab.dirtra = pave.direction and (pave.from_lhrs <= mvab.REFERENCE_NO < pave.to_lhrs);

All that had to be done is to restrict the to_LHRS from matching.

View solution in original post

4 REPLIES 4
art297
Opal | Level 21

Why do you think they are duplicates? Your're merging two files and your conditions on those variables are >=, not equal to.

 

Art, CEO, AnalystFinder.com

 

iliyan
Obsidian | Level 7
I want the lhrs in the mvab file to be bounded between the to and from lhrs
of the pavement file.
art297
Opal | Level 21

Are you saying that you want:

where mvab.dirtra = pave.direction and (pave.from_lhrs <= mvab.REFERENCE_NO <=  and pave.to_lhrs)
;

of course, that is if mvab.REFERENCE_NO represents the lhrs to said existed in the mvab file.

 

Art, CEO, AnalystFinder.com

 

iliyan
Obsidian | Level 7

EDIT, The solution is:

where mvab.dirtra = pave.direction and (pave.from_lhrs <= mvab.REFERENCE_NO < pave.to_lhrs);

All that had to be done is to restrict the to_LHRS from matching.

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

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1769 views
  • 0 likes
  • 2 in conversation