VIEWの作成 ORACLE MySQL
2019-05-193 min read
目次
概要
VIEWの作成の基本文法。 SQLで毎回結合したクエリを生成するのが面倒だった場合VIEWを使います。
VIEWの作成
OracelもMySQLも同じようです。
構文
CREATE VIEW V_TEST AS
SELECT
tb1.col1 as col_a,
tb1.col2 as col_b,
tb2.col1 as col_c,
tb2.col2 as col_d
FROM
table1 as tb1
JOIN table2 as tb2
ON tb1.id = tb2.id
VIEWから抽出する
VIEWから項目を抽出する場合は通常のSELECTと同じように記述します
SELECT
col_a,
col_b,
col_c,
col_d
FROM
V_TEST
参考
https://www.techscore.com/tech/sql/SQL9/09_01.html/
https://www.atmarkit.co.jp/ait/articles/1703/01/news190.html
Recommends
New Posts
Hot posts!
Date
Tags
(110)
(54)
(54)
(47)
(45)
(36)
(30)
(29)
(24)
(24)
(22)
(21)
(21)
(20)
(19)
(17)
(16)
(16)
(15)
(14)
(12)
(12)
(12)
(12)
(12)
(12)
(11)
(10)
(10)
(10)
(10)
(10)
(9)
(9)
(8)
(8)
(8)
(8)
(7)
(7)
(6)
(6)
(6)
(6)
(6)
(5)
(5)
(5)
(5)
(4)
Author