- Notifications
You must be signed in to change notification settings - Fork4
In this repository, you can find some stored procedures, triggers, views and t-sql examples with both their explanations and implementations.
License
Burakkylmz/Programming_SQL_Server_Database
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Microsoft SQL Server is a relational database management system developed by Microsoft. As a database server, it is a software product with the primary function of storing and retrieving data as requested by other software applications—which may run either on the same computer or on another computer across a network.
Most of the popular relational database systems, SQL Server, Oracle, MySQL and the like, support stored procedures. A stored procedure is nothing more than a piece of code that performs some repetitive set of actions. It performs a particular task by executing a set of actions or queries against the database. The code for the stored procedure is stored in the database and can be executed at any time. Stored procedures are typically used to insert your records into one of more tables, update or delete data from tables, and to generate reports via the SELECT statement. It's actually possible for a stored procedure to do more than one thing.
If you want to try the stored procedure examples, first run the contactdb.sql scripts under the src folder in SQL Server to create the sample database.
About
In this repository, you can find some stored procedures, triggers, views and t-sql examples with both their explanations and implementations.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.