VOOZH about

URL: https://www.geeksforgeeks.org/python/sqlalchemy-core-update-statement/

⇱ SQLAlchemy core - Update statement - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

SQLAlchemy core - Update statement

Last Updated : 31 Jan, 2022

In this article, we are going to see how to use the UPDATE statement in SQLAlchemy against a PostgreSQL database in Python.

Creating table for demonstration

Import necessary functions from the SQLAlchemy package. Establish connection with the PostgreSQL database using create_engine() function as shown below, create a table called books with columns book_id and book_price. Insert record into the tables using insert() and values() function as shown.

Output:

👁 Image
Sample table

Implementing a query to update table elements in SQLAlchemy

Example 1: Query to update table 

Updating table elements have a slightly different procedure than that of a conventional SQL query which is  shown below

from sqlalchemy import update
upd = update(tablename)
val = upd.values({"column_name":"value"})
cond = val.where(tablename.c.column_name == value)

Get the books table from the Metadata object initialized while connecting to the database. Pass the update query to the execute() function and get all the results using fetchall() function. Use a for loop to iterate through the results. 

The SQLAlchemy query shown in the below code updates the book name of row 3 as "2022 future ahead". Then, we can write a conventional SQL query and use fetchall() to print the results to check whether the table is updated properly.

Output:

👁 Image
The result of the Update query.

Example 2: Query to update a table based on the value

Let us see another example related to update query. The update query shown below updates the genre fiction as "sci-fi".

Tablename.update().where(Tablename.c.column_name == 'value').values(column_name = 'value')

Output:

👁 Image
The output of the update query

Example 3: Query to update a table based on the Condition

The below query updates the book_price by adding 50 bucks to books amounting to less than or equal to100. 

Output:

👁 Image
The output of update query
Comment