Drop

Translation reference for the drop statements.

Some parts in the output code are omitted for clarity reasons.

DROP TABLE

Drop of multiple tables is translated to a single Drop Statement for each table in the source statement.

Source code:

IN -> SqlServer_01.sql
DROP TABLE IF EXISTS [dbo].[T1], T3, T4;

Translated code:

OUT -> SqlServer_01.sql
DROP TABLE IF EXISTS dbo.T1;

DROP TABLE IF EXISTS T3;

DROP TABLE IF EXISTS T4;

Last updated