Table of Contents
Stored procedures in SQL
Advantages of stored procedures
Compile and execute
Client/server traffic reduction
Efficient code reuse and programming abstraction
Strengthen security measures
Functions in SQL
Built-in functions
Scalar function
Output
System aggregate function
Example
User-defined functions
Scalar operations
Table-valued functions
Inline functions
Multi-statement function
Advantages of user-defined functions
The difference between user-defined functions and stored procedures
in conclusion
Home Database Mysql Tutorial Write functions and stored procedures in SQL Server

Write functions and stored procedures in SQL Server

Sep 16, 2023 pm 03:13 PM

在 SQL Server 中编写函数和存储过程

A collection of SQL statements contained in stored procedures and functions, database objects used to perform certain tasks (or can also be used in data science). The two differ in many ways.

In this article, we will discuss functions and procedures in detail and their differences.

Let’s start with stored procedures -

Stored procedures in SQL

Simple written SQL code is saved for reuse multiple times, thus forming a stored procedure. If you can think of a query that you write frequently, you can save it as a stored procedure and then call that stored procedure to run the SQL code you saved as part of the stored procedure. This will save you from having to write the same questions over and over again.

You can repeatedly execute the same SQL code and provide parameters to the stored procedure. As needed, the stored procedure will respond appropriately based on the supplied parameter values.

Performance can also be enhanced through stored procedures. A set of SQL statements is used to perform multiple tasks. Which SQL statements are run next depends on the results of the initial SQL statement and conditional logic. These SQL statements and the conditional logic they contain can be combined into a single execution plan on the server by writing them into a stored procedure. Since all work is performed on the server, conditional logic can be performed without passing the results to the client.

Advantages of stored procedures

Compile and execute

Each stored procedure is compiled once by SQL Server and then the execution plan is reused. When calling stored procedures frequently, the performance improvements are huge.

Client/server traffic reduction

If network bandwidth is an issue in your environment, you'll be pleased to know that stored procedures can compress lengthy SQL searches into a single line that can be transmitted over the wire.

Efficient code reuse and programming abstraction

Stored procedures are available to many user and client applications. If you use them in a planned way, it will take less time to complete the development cycle.

Strengthen security measures

Independent of permissions on the underlying tables, you can provide users with access permissions to run stored procedures.

Functions in SQL

SQL Server supports two types of functions

Built-in functions

Built-in functions operate according to the Transact-SQL reference definition and cannot be changed. Only Transact-SQL statements that follow the syntax established by the Transact-SQL reference can use these functions as a reference.

The system has already defined these functions. It is divided into two categories -

In this tutorial, we will refer to the following table -

ID

Name

mark

age

1

severe

90

19

2

suresh

50

20

3

pratik

80

twenty one

4

Danraj

95

19

5

Ram

85

18

Scalar function

These operations take a value as input and output it. Some system scalar operations include -

  • round() - Rounds a number to the nearest three digits. For example, round(28.64851) will produce 28.649

SELECT ROUND(MARKS,0) FROM students;
Copy after login
  • upper() - upper("english") returns English, lower("ENGLISH") returns English.

SELECT upper(NAME) FROM Students;
Copy after login

Output

HARSH
SURESH
PRATIK
DHANRAJ
RAM
Copy after login
  • rand() - Using the function rand(), a random number in a range will be returned. For example, Rand(8), returns 0.71372242401 or any other randomly generated number.

System aggregate function

These functions return a single value, these functions take a collection of input parameters. Examples include -

Avg() Will provide an average value for all provided inputs.

Example

SELECT AVG(MARKS) FROM Students;
Copy after login

Output

80
Copy after login

Count() This function will return the number of rows that meet the given criteria.

Example

SELECT COUNT(*) FROM Students;
Copy after login

Output

5
Copy after login

Max() and min() The functions max() and min() will return the highest and lowest value among the supplied arguments.

Example

SELECT MAX(AGE) FROM Students
Copy after login

Output

21
Copy after login

Example

SELECT MIN(AGE) FROM Students;
Copy after login

Output

18
Copy after login

User-defined functions

Use the CREATE FUNCTION command to create a custom Transact-SQL function. User-defined functions provide a single value and require zero to more input parameters. Some user-defined functions (UDFs) return a single data value, such as a decimal number, character, or int.

Scalar operations

User-defined scalar functions output a value for each step of the function operation. Returns any data type value in the function.

Table-valued functions

Inline functions

Inline table functions with user-defined values ​​perform operations and return the results as a table. There is no BEGIN/END body. Just use a SELECT statement to get the results.

Multi-statement function

If a user-defined function contains an unmodifiable SELECT statement or contains multiple SELECT statements, the results it gives will not change. We must explicitly specify table variables and describe the values ​​that can be retrieved from various SQL queries.

Advantages of user-defined functions

  • Support modular programming

  • The function can be created once, saved in the database, and then used as many times in the software as you need. User-defined functions can be changed without changing the application's source code.

  • They can speed up execution

  • Transact-SQL user-defined functions, such as stored procedures, reduce compilation costs by caching plans and reusing them across multiple executions. Because user-defined functions do not need to be reparsed and optimized every time they are used, execution time is significantly reduced.

  • For computational workloads, business logic, and string operations, CLR functions perform significantly better than Transact-SQL functions. Data access-intensive logic is better suited for Transact-SQL operations.

  • They may reduce network activity.

  • Functions can be used to represent operations that filter information based on complex constraints that cannot be represented by a single numeric expression. To reduce the number of rows served to the client, this function can be used in the WHERE clause.

The difference between user-defined functions and stored procedures

The following table highlights the main differences between user-defined functions and stored procedures in SQL -

standard

User-defined function

Stored Procedure

return value

Single value

Single, multiple or even zero

parameter

input value

Input and output values

database

Cannot be modified

Can be modified

statement

SELECT statement only

SELECT and DML statements

call

Call from procedure

Cannot be called from function

Compile and execute

Need to compile every time

Only compile once

Transaction Management

impossible

impossible

in conclusion

In this article, we discussed in depth about stored procedures and their advantages, functions, types of functions, and advantages of functions, and finally came to the difference between functions and stored procedures.

The above is the detailed content of Write functions and stored procedures in SQL Server. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How do you alter a table in MySQL using the ALTER TABLE statement? How do you alter a table in MySQL using the ALTER TABLE statement? Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections? How do I configure SSL/TLS encryption for MySQL connections? Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL? How do you handle large datasets in MySQL? Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement? How do you drop a table in MySQL using the DROP TABLE statement? Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys? How do you represent relationships using foreign keys? Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do you create indexes on JSON columns? How do you create indexes on JSON columns? Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)? How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)? Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles