DELETE ステートメント
テーブルから情報を削除するには、DELETE ステートメントを使用します。
DELETE 構文
DELETE ステートメントには、次の例に示すように、FROM 句のテーブル名とWHERE 句の行の主キーが必要です。
<delete_statement> ::= DELETE FROM <table_name> WHERE { ItemId = <expression> } [ { AND | OR } ... ]
<expression> ::=
| @ <parameter>
| ?
| <literal>
次の例に示すように、Statement またはPreparedStatement クラスのexecuteUpdate メソッドを使って、データ操作コマンドを実行し影響を受ける行数を取得できます。
Connection connection = DriverManager.getConnection("jdbc:exchange:User='[email protected]';Password='myPassword';Server='https://outlook.office365.com/EWS/Exchange.asmx';Platform='Exchange_Online';Schema='EWS';",); String cmd = "DELETE FROM Contacts WHERE ItemId = ?"; PreparedStatement pstmt = connection.prepareStatement(cmd); pstmt.setString(1, "AQMkAGRlMWQ5MDg0..."); int count=pstmt.executeUpdate(); connection.close();