Add content for Stored Procedures (#3047)
* Update 102-stored-procedures.md Added information and link * Update content/roadmaps/116-aspnet-core/content/102-database-fundamentals/102-stored-procedures.md Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/3062/head
parent
1148dfb35e
commit
3fd3e696ce
1 changed files with 5 additions and 1 deletions
@ -1 +1,5 @@ |
||||
# Stored procedures |
||||
# Stored Procedures |
||||
|
||||
A stored procedure is a pre-compiled collection of SQL statements that can be executed on a database server. Stored procedures are typically used to perform specific tasks, such as retrieving data from a database, inserting or updating data, or performing complex calculations. They are stored on the database server and can be called or executed from a client application or other stored procedures. Stored procedures can improve database performance by reducing the amount of SQL code needed to be executed and allowing developers to reuse common pieces of code. They can also provide security by allowing database administrators to control which users have access to specific stored procedures. |
||||
|
||||
<BadgeLink colorScheme='blue' badgeText='Read' href='https://www.w3schools.com/sql/sql_stored_procedures.asp'>Stored Procedure Tutorial</BadgeLink> |
||||
|
Loading…
Reference in new issue