DEV Community

siddharth shukla
siddharth shukla

Posted on

Delete record from the database with where condition using python

DELETE keyword is used to delete the records from the table.

DELETE FROM table_name WHERE condition statement is used to delete records. If you don’t specify the condition, then all of the records will be deleted.

Let’s delete a record from the user table with named Siddharth.

Read More: https://realprogrammer.in/delete-record-from-the-database-with-where-condition-using-python/

Youtube: https://www.youtube.com/watch?v=DsgASHho0X8

Top comments (0)