Home

Deleting a Table

 

Introduction

To delete a table using SQL, use the following formula:

DROP TABLE TableName

The DROP TABLE expression is required and it is followed by the name of the undesired table. Here is an example:

DROP TABLE Students;
GO

 

 

Home Copyright © 2008-2012 FunctionX