cobol
DELETEステートメント
サーチ…
備考
DELETE
ステートメントは、大容量ストレージからレコードを削除します。一部のコンパイラでは、 FILE
句とともにDELETE
文を使用してFD
名を削除することができます(使用中のデータベース管理エンジンに必要な関連する索引付け構造とともに)。
主キーフィールドのキーを削除してレコードを削除する
identification division.
program-id. deleting.
environment division.
configuration section.
input-output section.
file-control.
select optional indexed-file
assign to "indexed-file.dat"
status is indexing-status
organization is indexed
access mode is dynamic
record key is keyfield
alternate record key is altkey with duplicates
.
...
procedure division.
move "abcdef" to keyfield
*> Delete a record by index
delete indexed-file record
invalid key
display "No delete of " keyfield end-display
not invalid key
display "Record " keyfield " removed" end-display
end-delete
perform check-delete-status
...
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow