abap程式設計的一些例子 將資料選擇至內錶 多行

2021-04-14 20:57:18 字數 604 閱讀 5148

data: begin of tab_type,

carrid type spfli-carrid,

connid type spfli-connid,

end of tab_type.

data: spfli_tab1 type table of spfli,

spfli_tab2 like table of tab_type.

select *

from spfli

into table spfli_tab1

where cityfrom = 'new york' and cityto = 'london'.

select carrid connid

from spfli

into corresponding fields of table spfli_tab2

where cityfrom = 'new york' and cityto = 'frankfurt'.

loop at spfli_tab2 into tab_type.

write: / tab_type-carrid,

tab_type-connid.

endloop. 

shell程式設計的一些例子4

bash支援一維陣列 1.陣列定義 name value1,value2.valuen value形如 subscript string subscript 是可選項 如果沒給出 則其下標是上乙個元素的下標加1 例子 name sum scan 6 haha dfg echo sum echo sc...

crontab 的一些例子

1.這個可以的,bi weekly的task 00 08 3 home user user.script 然後在script的開始寫上 if expr date w 2 0 then exit fi2.每個月第一周的週三 bin bash date date d if date le 7 then ...

一些基礎的執行緒例子

1.建立執行緒的方式 繼承thread類和實現runnable介面。下面這個例子是通過繼承類的方式建立執行緒的。packagemythread public classthread1extendsthread public static voidmain string args 上面的 建立了兩個執...