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
Abhilash Panicker 2 years ago committed by GitHub
parent 1148dfb35e
commit 3fd3e696ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      content/roadmaps/116-aspnet-core/content/102-database-fundamentals/102-stored-procedures.md

@ -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…
Cancel
Save