dim tabtemp as new datatable
dim mycolumn as datacolumn
dim myrow as datarow
dim arytemp(,) as string
dim i as int32 = 0
dim ii as int32
redim arytemp(dsttemp.tables(0).columns.count, dsttemp.tables(0).rows.count)
for each mycolumn in dsttemp.tables(0).columns
ii = 1
arytemp(i, 0) = i
for each myrow in dsttemp.tables(0).rows
arytemp(i, ii) = myrow(i)
response.write(arytemp(i, ii))
ii += 1
next
i += 1
response.write("
")next
'建立新錶
for i = 0 to dsttemp.tables(0).rows.count
tabtemp.columns.add(new datacolumn(i))
next
for i = 0 to dsttemp.tables(0).columns.count
myrow = tabtemp.newrow()
for ii = 0 to dsttemp.tables(0).rows.count
myrow(ii) = arytemp(i, ii)
next
tabtemp.rows.add(myrow)
next
SQL(行列互換)
有乙個sql題在面試中出現的概率極高,最近有學生出去面試仍然會遇到這樣的題目,在這裡跟大家分享一下。題目 資料庫中有一張如下所示的表,表名為sales。年 季度銷售量 1991111 1991212 1991313 1991414 1992121 1992222 1992323 1992424 要求...
SQL行列互換
有乙個sql題在面試中出現的概率極高,在這裡跟大家分享一下。題目 資料庫中有一張如下所示的表,表名為sales。年 季度銷售量 1991111 1991212 1991313 1991414 1992121 1992222 1992323 1992424 要求 寫乙個sql語句查詢出如下所示的結果。...
SQL行列互換
題目 資料庫中有一張如下所示的表,表名為sales。年 季度銷售量 1991111 1991212 1991313 1991414 1992121 1992222 1992323 1992424 要求 寫乙個sql語句查詢出如下所示的結果。年 一季度二季度 三季度四季度 1991 1112 1314...