PythonPostgreSQL-データの削除
を使用して、既存のテーブルのレコードを削除できます。 DELETE FROMPostgreSQLデータベースのステートメント。特定のレコードを削除するには、WHERE句を一緒に使用する必要があります。
構文
以下は、PostgreSQLでのDELETEクエリの構文です。
DELETE FROM table_name [WHERE Clause]
例
次のクエリを使用して、CRICKETERSという名前のテーブルを作成したと仮定します。
postgres=# CREATE TABLE CRICKETERS (
First_Name VARCHAR(255), Last_Name VARCHAR(255),
Age int, Place_Of_Birth VARCHAR(255), Country VARCHAR(255)
);
CREATE TABLE
postgres=#
そして、INSERTステートメントを-として使用して5つのレコードを挿入した場合
postgres=# insert into CRICKETERS values ('Shikhar', 'Dhawan', 33, 'Delhi', 'India');
INSERT 0 1
postgres=# insert into CRICKETERS values ('Jonathan', 'Trott', 38, 'CapeTown', 'SouthAfrica');
INSERT 0 1
postgres=# insert into CRICKETERS values ('Kumara', 'Sangakkara', 41, 'Matale', 'Srilanka');
INSERT 0 1
postgres=# insert into CRICKETERS values ('Virat', 'Kohli', 30, 'Delhi', 'India');
INSERT 0 1
postgres=# insert into CRICKETERS values ('Rohit', 'Sharma', 32, 'Nagpur', 'India');
INSERT 0 1
次のステートメントは、姓が「Sangakkara」であるクリケット選手のレコードを削除します。−
postgres=# DELETE FROM CRICKETERS WHERE LAST_NAME = 'Sangakkara';
DELETE 1
SELECTステートメントを使用してテーブルの内容を取得すると、1つを削除したため、4つのレコードしか表示されません。
postgres=# SELECT * FROM CRICKETERS;
first_name | last_name | age | place_of_birth | country
------------+-----------+-----+----------------+-------------
Jonathan | Trott | 39 | CapeTown | SouthAfrica
Virat | Kohli | 31 | Delhi | India
Rohit | Sharma | 33 | Nagpur | India
Shikhar | Dhawan | 46 | Delhi | India
(4 rows)
WHERE句を指定せずにDELETEFROMステートメントを実行すると、指定したテーブルのすべてのレコードが削除されます。
postgres=# DELETE FROM CRICKETERS;
DELETE 4
すべてのレコードを削除したので、CRICKETERSテーブルの内容を取得しようとすると、SELECTステートメントを使用して、以下に示すような空の結果セットが得られます。
postgres=# SELECT * FROM CRICKETERS;
first_name | last_name | age | place_of_birth | country
------------+-----------+-----+----------------+---------
(0 rows)
Pythonを使用してデータを削除する
psycopg2のカーソルクラスは、execute()メソッドという名前のメソッドを提供します。このメソッドは、クエリをパラメータとして受け取り、それを実行します。
したがって、pythonを使用してPostgreSQLのテーブルにデータを挿入するには-
インポート psycopg2 パッケージ。
を使用して接続オブジェクトを作成します connect() メソッド、ユーザー名、パスワード、ホスト(オプションのデフォルト:localhost)、およびデータベース(オプション)をパラメーターとして渡します。
属性の値としてfalseを設定して、自動コミットモードをオフにします autocommit。
ザ・ cursor()psycopg2ライブラリのConnectionクラスのメソッドは、カーソルオブジェクトを返します。このメソッドを使用してカーソルオブジェクトを作成します。
次に、UPDATEステートメントをパラメーターとしてexecute()メソッドに渡して実行します。
例
次のPythonコードは、年齢値が25を超えるEMPLOYEEテーブルのレコードを削除します。
import psycopg2
#establishing the connection
conn = psycopg2.connect(
database="mydb", user='postgres', password='password', host='127.0.0.1', port= '5432'
)
#Setting auto commit false
conn.autocommit = True
#Creating a cursor object using the cursor() method
cursor = conn.cursor()
#Retrieving contents of the table
print("Contents of the table: ")
cursor.execute('''SELECT * from EMPLOYEE''')
print(cursor.fetchall())
#Deleting records
cursor.execute('''DELETE FROM EMPLOYEE WHERE AGE > 25''')
#Retrieving data after delete
print("Contents of the table after delete operation ")
cursor.execute("SELECT * from EMPLOYEE")
print(cursor.fetchall())
#Commit your changes in the database
conn.commit()
#Closing the connection
conn.close()
出力
Contents of the table:
[('Ramya', 'Rama priya', 27, 'F', 9000.0),
('Sarmista', 'Sharma', 26, 'F', 10000.0),
('Tripthi', 'Mishra', 24, 'F', 6000.0),
('Vinay', 'Battacharya', 21, 'M', 6000.0),
('Sharukh', 'Sheik', 26, 'M', 8300.0)]
Contents of the table after delete operation:
[('Tripthi', 'Mishra', 24, 'F', 6000.0),
('Vinay', 'Battacharya', 21, 'M', 6000.0)]