DELETE ステートメント
テーブルから情報を削除するには、DELETE ステートメントを使用します。
DELETE 構文
DELETE ステートメントには、次の例に示すように、FROM 句のテーブル名とWHERE 句の行の主キーが必要です。
<delete_statement> ::= DELETE FROM <table_name> WHERE { ContactId = <expression> } [ { AND | OR } ... ]
<expression> ::=
| @ <parameter>
| ?
| <literal>
次の例に示すように、Statement またはPreparedStatement クラスのexecuteUpdate メソッドを使って、データ操作コマンドを実行し影響を受ける行数を取得できます。
Connection connection = DriverManager.getConnection("jdbc:xero:InitiateOAuth=GETANDREFRESH;",); String cmd = "DELETE FROM Contacts WHERE ContactId = ?"; PreparedStatement pstmt = connection.prepareStatement(cmd); pstmt.setString(1, "c27221d7-8290-4204-9f3d-0cfb7c5a3d6f"); int count=pstmt.executeUpdate(); connection.close();