Google New or returning user — sign in with Google for instant login, no password needed. Sign in with Google Maybe later
Quiz title : PROC SQL Fundamentals
Question 1 of 8



Which of the statements or clauses in the PROC SQL program below is written incorrectly?

proc sql;
    
select style sqfeet bedrooms
    
from certadv.houses
    
where sqfeet ge 800;
quit;