Write And Execute Dynamic SQL Query In SQL Server

Introduction
 
This example demonstrates how to write and execute a dynamic SQL Query in SQL Server. You can execute a Query using EXEC sql command and sp_executesql commands in SQL Server.
 
The Execution of dynamic SQL Query is supported in SQL Server versions like SQL Server 2000, SQL Server 2005, SQL Server 2008, SQL Server 2008R2, SQL Server 2012, SQL Server 2014 or higher versions of SQL Server.
 
First Create Database for Proper Demontration.
 
What is a Database ?
 
Database is a structured set of data held in a computer that can be accessed in various ways. In short, the database stores informative data in tabular format. One Database can contain multiple tables.
 
What are Tables ?
 
A table is made up of rows and columns.A table has a specified number of columns, but can have any number of rows. In the Table each row in a relational is uniquely identified by a primary key.
 
How to Create Table in Database ?
 
You can Create table by writing sql statement "CREATE TABLE".
Example
  1. CREATE TABLE #Temp  
  2. (  
  3.    EmployeeId INT,  
  4.    EmployeeName VARCHAR(50),  
  5.    Department VARCHAR(50),  
  6. )  
//#Temp is Table Name

What is primary key ?
  
Primary key is a unique identifier. It is a key in a relational database that is unique for each record.
 
How to Insert Record in Created Table ?
 
You can Insert Record in Created Table #Temp by Write Sql Statement "INSERT INTO"
 
Example
  1. INSERT INTO #Temp (EmployeeId, EmployeeName, Department) VALUES (1,'Nikunj Satasiya','Asp.Net')  
  2. INSERT INTO #Temp (EmployeeId, EmployeeName, Department) VALUES (1,'Hiren Dobariya','Asp.Net')  
  3. INSERT INTO #Temp (EmployeeId, EmployeeName, Department) VALUES (1,'Vivek Ghadiya','Android')  
  4. INSERT INTO #Temp (EmployeeId, EmployeeName, Department) VALUES (1,'Pratik Pansuriya','SEO')  
  5. INSERT INTO #Temp (EmployeeId, EmployeeName, Department) VALUES (1,'Sneha Patel','PHP')  
  6. INSERT INTO #Temp (EmployeeId, EmployeeName, Department) VALUES (1,'Sarah Demola','iOS')  
You can Get Inserted Data By Writing Sql Statement "SELECT"
  1. SELECT * FROM #Temp WITH (NOLOCK)  
 
 
So, let's write and execute dynamic SQL Query. Generally you can do as follows:  You simply concatenate the parameter values to the SQL string.
 
Example
  1. CREATE PROCEDURE Employee_GetEmployee  
  2. @EmployeeId CHAR(5)  
  3. AS  
  4. BEGIN  
  5. DECLARE @SQL NVARCHAR(2000)  
  6. SET @SQL = 'SELECT EmployeeName FROM #Temp WHERE EmployeeId = @EmployeeId'  
  7. EXEC sp_executesql @SQL, N'@EmployeeId CHAR(5)', @EmployeeId = @EmployeeId  
  8. END  
Summary
 
It's difficult to handle due to single quotes and also it is vulnerable to attacks like SQL Injection and hence you must make use of sp_executesql function and pass the parameter value. in the above stored procedure, parameter values are passed to the dynamic SQL in SQL Server.
Codingvila
Codingvila is an educational website, developed to help tech specialists/beginners.