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, 2816🔥, 0💬
Popular Posts:
How to format a number of bytes in a human-readable unit using the FORMAT_BYTES() function? FORMAT_B...
How To Connect ASP Pages to Oracle Servers in Oracle? If you are running Windows IIS Web server and ...
How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAG...
How To Enter Unicode Character String Literals in SQL Server Transact-SQL? Unicode characters are mu...
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...