Collections:
"DROP TABLE" - Deleting Existing Tables in SQL Server
How To Drop an Existing Table with "DROP TABLE" Statements in SQL Server?
✍: FYIcenter.com
If you want to delete an existing table and its data rows, you can use the "DROP TABLE" statement as shown in the tutorial script below:
SELECT * FROM tipBackup GO id subject description create_date 1 Learn SQL Visit dev.fyicenter.com 2006-07-01 DROP TABLE tipBackup GO SELECT * FROM tipBackup GO Msg 208, Level 16, State 1, Line 1 Invalid object name 'tipBackup'.
Be careful, when you use the "DROP TABLE" statement. All data rows are gone too.
⇒ Understanding and Managing Indexes in SQL Server
⇐ "sp_rename ... 'OBJECT'" - Renaming Existing Tables in SQL Server
2016-11-15, 2262🔥, 0💬
Popular Posts:
How To Fix the INSERT Command Denied Error in MySQL? The reason for getting the "1142: INSERT comman...
How To Divide Query Output into Multiple Groups with the GROUP BY Clause in SQL Server? Sometimes, y...
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...
What Is an Oracle Tablespace in Oracle? An Oracle tablespace is a big unit of logical storage in an ...