按條件匯出excel資料

2021-08-08 14:43:14 字數 881 閱讀 6718

按條件匯出excel資料

寫法1:

proc export data=hbq.tmp_double_card_51_6(firstobs=1 obs=65486)

outfile="c:\users\ex_wljr_huangbiquan\downloads\二類戶促動測試群購買資料採集.xls" replace;

sheet='二類戶促動測試客群5活動組part1';

run;

proc export data=hbq.tmp_double_card_51_6(firstobs=65487 obs=124696)

outfile="c:\users\ex_wljr_huangbiquan\downloads\二類戶促動測試群購買資料採集.xls" replace;

sheet='二類戶促動測試客群5活動組part2';

run;

--寫法2:

proc export data=hbq.tmp_double_card_51_6(where=(ecifno<='600095999998'))

outfile="c:\users\ex_wljr_huangbiquan\downloads\二類戶促動測試群購買資料採集2.xls" replace;

sheet='二類戶促動測試客群5活動組part1';

run;

proc export data=hbq.tmp_double_card_51_6(where=(ecifno > '600095999998'))

outfile="c:\users\ex_wljr_huangbiquan\downloads\二類戶促動測試群購買資料採集2.xls" replace;

sheet='二類戶促動測試客群5活動組part2';

run;

資料匯出excel

一 name get name 當我們接到乙個資料表的名字的時候用下面這個sql語句就能把表字段展示出來 res db select describe name foreach res as v a就是我們所需要的欄位名稱 接下來我們定義excel裡表頭的格式 str for i 0 i array...

資料匯出excel

exportexcel data,title,filename 匯出資料為excel param data 乙個二維陣列,結構如同從資料庫查出來的陣列 param title excel的第一行標題,乙個陣列,如果為空則沒有標題 examlpe exportexcel arr,array id 賬戶...

excel資料匯出

用於乙個演示的小demo,提供一種資料匯出的一種思路。通過自己進行自定義的幾個資料進行的測試。前台 border 0 style margin top 4px margin left 18px href class easyui linkbutton onclick downloadfile 資料匯...