Previous Page | Next Page

Creating and Updating Tables and Views

Deleting a Table

To delete a PROC SQL table, use the DROP TABLE statement:

proc sql;
   drop table sql.newcountries;

Previous Page | Next Page | Top of Page