關於kettle行轉列實用教程

2021-12-30 09:50:45 字數 1894 閱讀 5837

一.行轉列

1.資料庫指令碼

create table studentinfo

( studentno int,

subject varchar(10),

grade int

);insert into studentinfo values(201105545,'語文',80);

insert into studentinfo values(201105545,'數學',82);

insert into studentinfo values(201105545,'英語',84);

insert into studentinfo values(201105543,'語文',70);

insert into studentinfo values(201105543,'數學',74);

insert into studentinfo values(201105543,'英語',76);

insert into studentinfo values(201105548,'語文',90);

insert into studentinfo values(201105548,'數學',93);

insert into studentinfo values(201105548,'英語',94);

commit;

2.總體行轉列示意圖

2.1表輸入配置。

2.2列轉行配置

2.3欄位選擇配置

2.4文字檔案輸出配置

輸出到檔案後檢視內容

二.列轉行

1.資料庫指令碼

create table studentinfo_tmp(studentno int,chinese int,math int,english int);

insert into studentinfo_tmp values(201105543,70,74,76);

insert into studentinfo_tmp values(201105545,80,82,84);

insert into studentinfo_tmp values(201105548,90,93,94);

2.整體示意圖

2.1表輸入

2.2行轉列

2.3欄位選擇

2.4文字檔案輸出

3.執行後檢視輸出文字檔案

使用kettle行轉列

生成測試資料 set ansi nulls on goset quoted identifier on goset ansi padding on gocreate table dbo test id int null,name varchar 20 null,quarter int null,pr...

Axmath實用教程

縮放公式的大小 ctrl 滑鼠滾動 上述功能要確保在設定 語法與快捷鍵中開啟了啟用混合語法輸入 轉換符號介面 滑鼠滾動 符號面板 右鍵 可以設定外觀,為某個符號設定快捷鍵 latex編輯器 ctrl tab 第一項 帶歷史記錄的剪貼簿 第二項 磁貼 經常使用的東西 選中後拖動即可製作 第三項 參考書...

NPOI 實用教程

記錄一下,最近專案中使用這個第三方元件 感謝博主的分享 目錄1.認識npoi 2.使用npoi生成xls檔案 2.1 建立基本內容 2.2 單元格操作 2.3 使用excel公式 2.3.1 基本計算 2.3.2 sum函式 2.3.3 日期函式 2.3.4 字串相關函式 2.3.5 if函式 2....