Skip to content

This repo contains my sql examples and understanding.

License

Notifications You must be signed in to change notification settings

nidea1/SQL_Examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SQL Examples

I will implement functions, transactions, triggers, views, stored procedures and other Advanced SQL Topics in this repo.

Database sample used for in this repo examples.

What is SQL?

Structured Query Language (SQL) is programming language for storing and processing data in a relational database.

Using DB Sample

-- Firstly create a new database
CREATE DATABASE ExampleDatabase
GO
-- After use new database for db sample
USE ExampleDatabase
GO

-- Now copy database sample here ↓

/*
** Copyright Microsoft, Inc. 1994 - 2000
** All Rights Reserved.
*/

-- This script does not create a database.
-- Run this script in the database you want the objects to be created.
-- Default schema is dbo.

SET NOCOUNT ON
GO

set quoted_identifier on
GO
.
.
.

About

This repo contains my sql examples and understanding.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages