Collections:
"CREATE PROCEDURE" - Creating Simple Stored Procedures in SQL Server
How To Create a Simple Stored Procedure in SQL Server Transact-SQL?
✍: FYIcenter.com
If you want to create a simple stored procedure with no input and output parameters, you can use the "CREATE PROCEDURE" command with a statement batch in a simple format as shown in below:
CREATE PROCEDURE procedure_name AS statement_1; statement_2; ... statement_n; GO
The following tutorial exercise shows you how to create a simple stored procedure:
USE FyiCenterData; GO CREATE PROCEDURE Hello AS SELECT 'Welcome to:'; SELECT ' FYIcenter.com'; GO Command(s) completed successfully. EXEC Hello; GO ----------- Welcome to; (1 row(s) affected) ---------------- FYIcenter.com (1 row(s) affected)
Â
2017-01-05, 2384👍, 0💬
Popular Posts:
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How To Replace Given Values with NULL using NULLIF() in SQL Server Transact-SQL? Sometime you want t...
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...