找不到來描述我的例子Cobol語言的文檔的參考。需要一個COBOL文檔參考
01 staff-record-1.
05 staff-id pic s9(4) comp-5.
05 staff-name pic x(20).
01 staff-record-2.
05 staff-id pic s9(4) comp-5.
05 staff-name pic x(20).
05 staff-info pic x(40).
....
* i can move value
move 'info' to staff-info in staff-record-2
* or (if name is uniq)
move 'info' to staff-info
我在哪裏可以找到文檔參考?
謝謝,這是遺憾的是,因爲是正確的我只能標記一個答案 –