ようこそ

SQL Server 入門

John MacKintosh

Instructor

shutterstock_1255111450.jpg

shutterstock_418087330.jpg

SQL Server 入門

SQL Server と Transact-SQL

  • SQL Server - Microsoftが開発したリレーショナルデータベースシステム

  • Transact-SQL(T-SQL)- MicrosoftによるSQL実装。追加機能を備える

  • 本コース:T-SQLの基礎を習得する

  • クエリの書き方を学ぶ

SQL Server 入門

shutterstock_274642010.jpg

SQL Server 入門

クエリの基本

  • SQL Server:データベースとテーブルを格納する倉庫

  • クエリ:異なる棚から必要なデータを選んでカートに入れる操作

  • SELECT:データ取得のキーワード

SQL Server 入門
SELECT description 
FROM grid;
+-------------------------------------+
| description                         |
|-------------------------------------|
| Severe Weather Thunderstorms        |
| Severe Weather Thunderstorms        |
| Severe Weather Thunderstorms        |
| Fuel Supply Emergency Coal          |
| Physical Attack Vandalism           |
| Physical Attack Vandalism           |
| Physical Attack Vandalism           |
| Severe Weather Thunderstorms        |
| Severe Weather Thunderstorms        |
| Suspected Physical Attack           |
| Physical Attack Vandalism           |
| ...                                 |
+-------------------------------------+
SQL Server 入門

複数列の選択

SELECT 
  artist_id, 
  artist_name 
FROM 
  artist;
+-----------+----------------------+
| artist_id | artist_name          |
|-----------+----------------------|
| 1         | AC/DC                |
| 2         | Accept               |
| 3         | Aerosmith            |
| 4         | Alanis Morissette    |
| 5         | Alice In Chains      |
| 6         | Antônio Carlos Jobim |
| 7         | Apocalyptica         |
| 8         | Audioslave           |
| 9         | BackBeat             |
| 10        | Billy Cobham         |
+-----------+----------------------+
SQL Server 入門

クエリの書式

SELECT description, event_year, event_date
FROM grid;
SELECT 
  description, 
  event_year, 
  event_date
FROM 
  grid;
SQL Server 入門

SELECT TOP ()

-- Return 5 rows
SELECT TOP(5) artist
FROM artists;
-- Return top 5% of rows
SELECT TOP(5) PERCENT artist 
FROM artists;
+-----------------------+
| artist                |
|-----------------------|
| AC/DC                 |
| Accept                |
| Aerosmith             |
| Alanis Morissette     |
| Alice in Chains       |
+-----------------------+
SQL Server 入門

SELECT DISTINCT

-- Return all rows in the table
SELECT nerc_region 
FROM grid;
+-------------+
| nerc_region |
|-------------|
| RFC         |
| RFC         |
| MRO         |
| MRO         |
| ....        |
+-------------+
-- Return unique rows
SELECT DISTINCT nerc_region 
FROM grid;
+-------------+
| nerc_region |
|-------------|
| NPCC        |
| NPCC RFC    |
| RFC         |
| ERCOT       |
| ...         | 
+-------------+
SQL Server 入門

SELECT *

-- Return all rows
SELECT * 
FROM grid;
  • 大きなテーブルには不向き
SQL Server 入門

ASを使った列名のエイリアス

SELECT demand_loss_mw AS lost_demand 
FROM grid;
+-------------+
| lost_demand |
|-------------|
| 424         |
| 217         |
| 494         |
| 338         |
| 3900        |
| 3300        |
+-------------+
SELECT description AS cause_of_outage 
FROM grid;
+------------------------------+
| cause_of_outage              |
|------------------------------|
| Severe Weather Thunderstorms |
| Fuel Supply Emergency Coal   |
| Physical Attack Vandalism    |
| Suspected Physical Attack    |
| Electrical System Islanding  |
+------------------------------+
SQL Server 入門

T-SQLを書いてみましょう!

SQL Server 入門

Preparing Video For Download...