Anonymous Batches in SQL Server
Introduction:
In this article i will explain about Anonymous Batches in SQL Server.
Description:
In previous articles i explained about joins, and Batches. Now i will explain about Anonymous Batches in SQL Server.
Batches:
A batch is a group of sql statements. Which are executed as unit. Two types of batches are there. 1). Anonymous Batches and 2). Named Batches
1. Anonymous Batches:
A group of statements which can't be reffered by a name. Then that group/batch is called Anonymous Batches.
Example:
Begin
Declare @a int
Declare @b int
Set @a = 10
Set @b = 20
Declare @c int
Set @c = @a + @b;
print 'Sum is: '+cast(@c as varchar)
End
Output:
Sum is: 30
Note:
Here @a, @b, and @c are Local variables.
-
CreatedDec 21, 2013
-
UpdatedOct 03, 2020
-
Views1,936
Related Articles
Different types of variables in SQL Server
What is Cross Join in SQL Server
How delete record from parent table when there is Foreign Key relation in SQL Server
What is the differences between CHAR, NCHAR, VARCHAR and NVARCHAR in SQL Server?
How to add or remove a column from a table in SQL Server?
How to insert values into Identity Column in SQL Server?
How to get a fixed-length value in SQL Server?
What is Left Join (or) Left Outer Join in SQL Server?
How to get current week dates in SQL Server?
What are the different types of Date formats in SQL Server?