Multiple choice technology programming languages

Which of the clauses in the PROC SQL program below is written incorrectly? proc sql; select style sqfeet bedrooms from choice.houses where sqfeet ge 800;

  1. SELECT

  2. FROM

  3. WHERE

  4. both a and c

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The WHERE clause uses 'ge' which is a SAS operator, not a SQL operator. In PROC SQL, the correct operator is '>='. The SELECT and FROM clauses are written correctly with proper syntax for column selection and table reference.