Skip to content
Advertisement

Postgresql update column based on set of values from another table

Dummy data to illustrate my problem:

So the data looks like:

Table 1:

category_id unit is_valid
1 a true
2 z true

Table 2:

category_id unit
1 a
1 b
1 c
2 d
2 e

I want to update the is_valid column in Table 1, if the category_id/unit combination from Table 1 doesn’t match any of the rows in Table 2. For example, the first row in Table 1 is valid, since (1, a) is in Table 2. However, the second row in Table 1 is not valid, since (2, z) is not in Table 2.

How can I update the column using postgresql? I tried a few different where clauses of the form UPDATE table1 SET is_valid = false WHERE... but I cannot get a WHERE clause that works how I want.

Advertisement

Answer

You can just set the value of is_valid the the result of a ` where exists (select …). See Demo.

NOTES:

  • Advantage: Query correctly sets the is_valid column regardless of the current value and is a vary simple query.
  • Disadvantage: Query sets the value of is_valid for every row in the table; even thoes already correctly set.

You need to decide whether the disadvantage out ways the advantage. If so then the same basic technique in a much more complicated query:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement