Proc SQL tidak bekerja

proc sql;
  create table want(where=(name in: ('Al','Wi'))) as
  select *
    from sashelp.class;
quit;
Fair Falcon