Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Two part question. Using postgres in python. 1) How do I replace all fields from the same column that match a specified value? For example, let's say I want to replace any fields that match "green" with "red" in the "Color" column.

2) How to delete all fields from the same column that match a specified value? For example, I'm trying to deleted all fields that match "green" in the Color column.

share|improve this question

1 Answer

Ad1. You need something like this:

session.query(Foo).filter_by(color = 'green').update({ 'color': 'red' })
session.commit()

Ad2. Similarly:

session.query(Foo).filter_by(color = 'green').delete()
session.commit()

You can find the querying documentation here and here.

share|improve this answer
I think the second answer deletes the entire row. I actually only want to delete the field. – teggy Sep 27 '09 at 20:38
I tried to use something like this to make field empty but it not seem to work: session.query(Foo).filter_by(color = 'green').update({ 'color': '' }) – teggy Sep 27 '09 at 21:03
Try 'color': None – iElectric Sep 28 '09 at 6:40
session.query(Foo).filter_by(color = 'green').update({ 'color': '' }) should work just fine. Maybe you didn't commit? Anyway, creating the engine with echo = True (or configuring sqlalchemy.engine logger) should help you debug that. – Cat Plus Plus Sep 28 '09 at 12:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.