can any one help me
i am little confused difference between 'where and ' & 'also'.
Using WHERE ALSO allows you to apply multiple WHERE statements to a SAS procedure or DATA step simultaneously. The usual behaviour of using multiple WHERE statements is that the last one overwrites any previous ones. WHERE ALSO changes that behaviour to make ALL WHERE statements be used. For example:
proc sort data = sashelp.class
out = class;
by age;
where sex = 'F';
where also age > 14;
* Same result as single statement: where sex = 'F' and age > 14;
run;
The effect of the two WHERE statements is to select all females aged over 14.
The simplest answer here is that in 16+ of SAS programming I have never seen where also used, nor even come across it until you posted this question. Logical operators and brackets are the ones used most.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.