Deleting a Table
To delete a PROC SQL table, use the DROP TABLE statement:
proc sql;
drop table newcountries;
quit;
Last updated: April 9, 2026
To delete a PROC SQL table, use the DROP TABLE statement:
proc sql;
drop table newcountries;
quit;