Stored Procedure, Function and Trigger
Stored Procedure, Function and Trigger
Slide 1
Objectives
1. Database Programming
2. Stored Procedure
3. Function
4. Trigger
Slide 2
1. Database Programming
1.1 Variables
1.2 Control-of-Flow Tools
Slide 3
1.1 Variables
• Declare a variable:
DECLARE @limit money
DECLARE @min_range int, @hi_range int
• Assign a value into a variable:
SET @min_range = 0, @hi_range = 100
SET @limit = $10
• Assign a value into a variable in SQL statement:
SELECT @price = price FROM titles WHERE
title_id = 'PC2091'
Slide 4
1.2 Control-of-Flow Tools
1.2.1 BEGIN…END
1.2.2 IF…ELSE
1.2.3 CASE … WHEN
1.2.4 RETURN [n]
1.2.5 WHILE
1.2.6 PRINT
Slide 5
1.2.1 BEGIN…END
Slide 6
1.2.2 IF…ELSE
• Defines conditional and, optionally, alternate execution when a condition is
false
IF Boolean_expression
T-SQL_statement | block_of_statements
[ELSE
T-SQL_statement | block_of_statements ]
Example:
IF (SELECT ytd_sales FROM titles WHERE title_id = 'PC1035') > 5000
PRINT 'Year-to-date sales are greater than $5,000 for PC1035.‘
Slide 7
1.2.3 CASE … WHEN
CASE input_expression
WHEN when_expression THEN result_expression
[WHEN when_expression THEN result_expression…n]
[ELSE else_result_expression ]
END
Example:
SELECT CASE payterms
WHEN 'Net 30' THEN 'Payable 30 days after invoice'
WHEN 'Net 60' THEN 'Payable 60 days after invoice'
WHEN 'On invoice' THEN 'Payable upon receipt of invoice'
ELSE 'None'
END as Payment_Terms FROM sales ORDER BY payterms
Other Programming Language
C#, Java: Switch … Case ; VB: Select … Case
Slide 8
1.2.4 RETURN [n]
Slide 9
1.2.5 WHILE
Slide
1.2.6 PRINT
Slide
2. Stored Procedure
Slide
2.1 What Is a Stored Procedure?
Slide
2.2 Stored Procedure vs. SQL Statement
SQL Statement Stored Procedure
Creating
- Check syntax
- Compile
Slide
2.3 Create, update and delete a procedure
Slide
2.3.1 Create a Procedure
2.3.1.1 Syntax
2.3.1.2 Example 1 (Without parameters)
2.3.1.3 Example 2 (With parameters)
2.3.1.4 Example 3 (Using RETURN)
Slide
2.3.1.1 Syntax
CREATE PROC[EDURE] procedure_name
[ @parameter_name data_type] [= default] OUTPUT][,...,n]
AS
T-SQL_statement(s)
Slide
2.3.1.2 Example 1 (Without parameters)
Slide
2.3.1.3 Example 2 (With parameters)
Slide
2.3.1.4 Example 3 (Using RETURN )
Slide
2.3.2 Update a Procedure
ALTER PROC[EDURE] procedure_name
[ @parameter_name data_type]
[= default] [OUTPUT]
[,...,n]
AS
t-sql_statement(s)
Slide
2.3.3 Delete a Procedure
• DROP PROCEDURE procedure_name
Slide
3. Function
Slide
3.1 What is a Function?
Slide
3.2 Scalar functions Example
Slide
3.3 Inline Table-valued Functions Example
Slide
3.4 Multi-statement Table-Valued Functions Example
Slide
4. Trigger
Slide
4.1 What is a Trigger?
Slide
4.2 Creating Syntax
Slide
4.3 Disable/Enable syntax
• Disable syntax
Disable trigger <trigger_name> on <table_name>
• Enable syntax
Enable trigger <trigger_name> on <table_name>
Slide
4.4 Deleted and Inserted tables
• The values in the inserted and deleted tables are accessible only
within the trigger. Once the trigger is completed, these tables are
no longer accessible.
Slide
4.5 Example
Slide
4.6 Other Functions
Slide
Slide