SQLServerのViewをExcel表示する
はじめに
SQLServerデータベース上のViewを、Excel上に表示する手順を説明する。
[利用シーン]
DB上のViewで出力する数字や算出・項目名を日本語変換し、Excelレポートとして出力するなど。
意外と簡単で便利!
前提
- 検証環境
- SQLServer2016 Developer
- Excel 2016
- SQLServer上にDB(当説明では、SANDBOX1)、およびデータのある任意テーブルを用意
Viewの準備
- SQLServer2016 Developer
- Excel 2016
SQLServer上に、以下のようなViewを作成(言わずもがな、元となるテーブルも必要)
CREATE VIEW [dbo].[月別部門別売上ビュー] AS (
SELECT
t1.YearMonth AS 年月
,t1.DeptCode AS 部門コード
,t1.SalesAmount AS 売上金額
FROM
T_SalesAmt t1
)
Excelからの接続手順
Author And Source
この問題について(SQLServerのViewをExcel表示する), 我々は、より多くの情報をここで見つけました https://qiita.com/yuruise/items/56cc01bf6bbabcc913b3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .