Skip to content

Commit 84755a6

Browse files
authored
Update README.md
1 parent e2a09bd commit 84755a6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Diff for: README.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,25 @@
11
# SQL_Code_Example
22
I show examples working in database with SQL. Here I gave information about both reading and creating a database. I explained each step with comment lines.
3+
4+
# Aggregate Functions
5+
All aggregate functions are deterministic. In other words, aggregate functions return the same value each time that they are called, when called with a specific set of input values.
6+
7+
# DML
8+
DML is short name of Data Manipulation Language which deals with data manipulation and includes most common SQL statements such SELECT, INSERT, UPDATE, DELETE, etc., and it is used to store, modify, retrieve, delete and update data in a database.
9+
10+
# DLL
11+
DDL is short name of Data Definition Language, which deals with database schemas and descriptions, of how the data should reside in the database.
12+
13+
# JOIN
14+
JOINS in SQL are commands which are used to combine rows from two or more tables, based on a related column between those tables. There are predominantly used when a user is trying to extract data from tables which have one-to-many or many-to-many relationships between them.
15+
16+
# Functions
17+
SQL Server Functions are useful objects in SQL Server databases. A SQL Server function is a code snippet that can be executed on a SQL Server
18+
19+
# Stored Procedure
20+
SQL Server stored procedure is a batch of statements grouped as a logical unit and stored in the database. The stored procedure accepts the parameters and executes the T-SQL statements in the procedure, returns the result set if any.
21+
22+
# Trigger
23+
A SQL trigger is a database object which fires when an event occurs in a database. We can execute a SQL query that will "do something" in a database when a change occurs on a database table such as a record is inserted or updated or deleted. For example, a trigger can be set on a record insert in a database table
24+
25+
## NetflixDB and LibraryDB : There are also examples that I created.

0 commit comments

Comments
 (0)