Exploring basics of Microsoft SQL Server
Below are the basic concepts in SQL Server:
1. Stored Procedure
A stored procedure is a group of SQL statements that can be executed together as a single unit.
CREATE PROCEDURE GetEmployeeByID
@EmployeeID INT
AS
BEGIN
SELECT FirstName, LastNa...
memorycrypt.hashnode.dev8 min read