How to Create Microsoft SQL Server Stored Procedure

This blog article shows you how to get started with Microsoft SQL Server Stored Procedure. I am achieving this using SSMS. I am using northwind sample database. To create the Stored Procedure, expand the database in my case, Northwind. Expand Programmability, right click on Stored Procedure, select New. select Stored Procedure…

You will see a complex template like the one below.

To create a Stored Procedure to list all the customer records, you only need the following lines.

CREATE PROCEDURE ListCustomers

AS

    SELECT * FROM Customers

GO

The following SQL statement creates a stored procedure that selects Customers from a particular City from the “Customers” table: There is a parameter named @City with nvarchar data type.

CREATE PROCEDURE ListCustomersByCity

@City nvarchar(30)

AS

    SELECT * FROM Customers WHERE City = @City

GO

You can execute the Stored Procedure by using exec then pass in the state like the statement below.

exec ListCustomersByCity @City = ‘Berlin’

The result will be as follows.

One thing you must not do is create a Stored Procedure that is calling another Stored Procedure.

Reference: https://www.w3schools.com/sql/sql_stored_procedures.asp

About chanmingman

Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years. Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net, Cloud, Community, Computers and Internet, Data Platform, programming and tagged . Bookmark the permalink.

3 Responses to How to Create Microsoft SQL Server Stored Procedure

  1. Pingback: Neutralize Time in Datetime data SQL Server | Chanmingman's Blog

  2. Pingback: Create a MySQL Stored Procedure to Read Data with Parameter | Chanmingman's Blog

  3. Pingback: Find Primary Key and Foreign Key Dependencies of Database Table in MS SQL | Chanmingman's Blog

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.