Translation reference for the drop statements.
Last updated 1 year ago
Some parts in the output code are omitted for clarity reasons.
Drop of multiple tables is translated to a single Drop Statement for each table in the source statement.
Drop 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;