delete table from database using DROP TABLE



SQL Server allows you to remove multiple tables at once using a single DROP TABLE statement as follows

Drop multiple tables
DROP TABLE tbl_user,tbl_salary
Drop a table that does not exist
DROP TABLE IF EXISTS tbl_user
Drop a single table example
DROP TABLE tbl_user

0 Comment's

Comment Form

Submit Comment