データベーステーブルからレコードを削除する

次の例のように、既にデータベーステーブルから取り出されたレコードを削除する場合は、delete recordコマンドを使用します。

例:

put the records of table "colorpalette" of myDB where ID is 2 into colortoDelete

delete record colortoDelete

次の例のように、削除する必要のあるレコードを先に取り出すことなく指定する場合は、where節を使用します。

例:

put table "colorpalette" of myDB into myColors

delete records from myColors where brightness is greater than 10

次の例のように、データベースから既に取り出された複数のレコードを削除する場合は、delete recordsコマンドを使用します。

例:

put the records of myTable where state is "Colorado" into doomedRecords

delete records doomedRecords

 

This topic was last updated on 2月 01, 2019, at 11:13:23 午前.

Eggplant icon Eggplant.io | Documentation Home | User Forums | Support | Copyright © 2019 Eggplant