Hi,
Simple question but I don't know what this is called so I haven't been able to find good results from the web.
Does something like this work in a data step?
where 0 < var < 6;
That is to say, is it always equivalent to
where var > 0 and var < 6;
I've tested with a made-up dataset and it seems to work fine. I'm just wondering if this practice is encouraged in sas programming.
Thank you.
Simple question but I don't know what this is called so I haven't been able to find good results from the web.
Does something like this work in a data step?
where 0 < var < 6;
That is to say, is it always equivalent to
where var > 0 and var < 6;
I've tested with a made-up dataset and it seems to work fine. I'm just wondering if this practice is encouraged in sas programming.
Thank you.