Drop
Translation reference for the drop statements.
DROP TABLE
Drop of multiple tables is translated to a single Drop Statement
for each table in the source statement.
Source code:
DROP TABLE IF EXISTS [dbo].[T1], T3, T4;
Translated code:
DROP TABLE IF EXISTS dbo.T1;
DROP TABLE IF EXISTS T3;
DROP TABLE IF EXISTS T4;
Last updated