How to Drop a Table in SQL Server in SQL Server
Dropping a table in SQL Server is simple:
drop table users;
Be careful: drop table
command drops the table along with the data in it, and there is no "undo“ option!
Spread the word
TweetDropping a table in SQL Server is simple:
drop table users;
Be careful: drop table
command drops the table along with the data in it, and there is no "undo“ option!
Spread the word
Tweet