News

The INTO clause behaves the same as CREATE TABLE in other SQL environments. SELECT * INTO new_table FROM old_table WHERE last_name LIKE 'Ja%'; GO The LIKE keyword allows you to filter results ...
proc access dbms=sybase; /* create access descriptor */ create work.employee.access; server=server1; database=personnel; user=carmen; password=aria; table=employees ... list all; run; proc sql stimer; ...