END (BEGIN...END) (Transact-SQL)
SQL Server 2008
Encloses a series of Transact-SQL statements that will execute as a group. BEGIN...END blocks can be nested.
Encloses a series of Transact-SQL statements that will execute as a group. BEGIN...END blocks can be nested.
Is any valid Transact-SQL statement or statement grouping as defined with a statement block. To define a statement block (batch), use the control-of-flow language keywords BEGIN and END. Although all Transact-SQL statements are valid within a BEGIN...END block, certain Transact-SQL statements should not be grouped together within the same batch (statement block).
