資料行列轉換

2021-05-02 17:19:28 字數 709 閱讀 7852

public

static

void

main()

displaytable(dt);

console.writeline(

"/r/n *****> 進行行列轉換 /r/n");

displaytable(columntorow(dt,

0));

console.readline();

}public

static

datatable columntorow(datatable src_dt,

intcolumnindex)

//columnindex 用來當作新列名的列

dt.rows.add(new_dr);

}return

dt;}

列印的結果:

name    type    relt

name0  type0  relt0

name1  type1  relt1

name2  type2  relt2

name3  type3  relt3

*****> 進行行列轉換

name    name0  name1  name2  name3

type    type0  type1  type2  type3

relt    relt0  relt1  relt2  relt3

DataTable資料行列轉換

datatable行轉列 源datatable 需要裝置的列 資料列 返回訊息 public static datatable rowtocolumn datatable sourcedt,string rowname,string datacolumn,out string msg 獲取指定列資料...

mysql行列轉換 mysql行列轉換

1.一維轉二維 上圖為成績表中資料,現希望將資料轉換為下圖。靜態 轉化為二維表後的列名及列數是確定不變的,本例中即course只有數學 語文 英語這三門課。select s name,max if course 數學 score,0 as 數學,max if course 語文 score,0 as...

資料庫行列轉換

資料庫中的 要求查詢出的資料 初始化環境 1 建表 create table studentresult name varchar 50 subject varchar 50 result int 2 插入資料 insert into studentresult values 張三 語文 80 in...