Google New or returning user — sign in with Google for instant login, no password needed. Sign in with Google Maybe later
Quiz title : Set - 001 - Part 06
Question 1 of 8




Given the SAS dataset ONE
ONE
SALARY
------------
200
205
.
523

The following SAS program is submitted;

Proc sql;
Select * from one
<Insert 
Where expression here>;
quit;

The following output is desired:;
SALARY
------------
200
205
523

Which WHERE expression completes the program and generates the desired output?