August 2018
Beginner
594 pages
22h 33m
English
If application logic does exist in the database, it is commonly found in stored procedures. A stored procedure is a grouping of one or more Structured Query Language (SQL) statements that forms a logical unit to accomplish some task. It can be used to do a combination of retrieving, inserting, updating, and deleting data.
It used to be popular to use stored procedures with client-server applications because their use reduced the amount of network traffic between the client and the server. Stored procedures can contain any number of statements within them and can call other stored procedures. A single call from the client to the server is all that is needed to execute a stored procedure. If that ...