Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select * from
your_table
where startdate < transdate < enddate
data test(drop= i basedate);
basedate = '05jan1996'd;
do i=1 to 1000000;
dates1 = basedate + ceil(uniform(0)*5);
dates2 = basedate + ceil(uniform(0)*6);
dates3 = basedate + ceil(uniform(0)*7);
output;
end;
run;
proc sql;
create table n as
select * from test where dates1<dates2<dates3;
quit;
data n;
set test;
if dates1<dates2<dates3;
run;