Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

nidea1/SQL_Examples

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

AltStyle によって変換されたページ (->オリジナル) /