Wednesday, November 1, 2017

sp_executesql

Executes a Transact-SQL statement or batch that can be reused many times, or one that has been built dynamically. The Transact-SQL statement or batch can contain embedded parameters.

Syntax:
 EXECUTE sp_executesql 
          N'SELECT * FROM Book 
          WHERE BookID= @bookid', 
          N'@bookId int', 
          @bookId= 100;  

No comments:

Change default Port on Next.js app

 If any other app or process is running on port 3000 , you will get this error in your terminal Port 3000 is already in use. error Command f...