SAS Institute. The Power to Know

SAS(R) 9.2 SQL Procedure User's Guide

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