Skip to content
Advertisement

How to update a table if values of the attributes are contained within another table?

I’ve got a database like this one:

enter image description here

I’m trying to create a query that would enable me to update the value of the status attribute inside the incident table whenever the values of all of these three attributes: tabor_vatrogasci, tabor_policija, and tabor_hitna are contained inside the izvještaj_tabora table as a value of the oznaka_tabora attribute. If, for example, the values of the tabor_vatrogasci, tabor_policija, and tabor_hitna attributes are 3, 4 and 5 respectively, the incident table should be updated if (and only if) 3, 4, and 5 are contained inside the izvještaj_tabora table.

This is what I tried, but it didn’t work:

Does anyone have any idea on how to accomplish this?

Advertisement

Answer

According to your description the query should look something like this:

I wonder though, why the connecting table tabor is irrelevant to the operation.

Among other things you fell victim to two widespread misconceptions:

1)

This expression aways results in NULL. Since NULL is considered “unknown”, if you compare it to anything, the outcome is “unknown” as well. I quote the manual on Comparison Operators:

Do not write expression = NULL because NULL is not “equal to” NULL. (The null value represents an unknown value, and it is not known whether two unknown values are equal.)

2)

In an EXISTS semi-join SELECT items are completely irrelevant. (I use SELECT 1 instead). As the term implies, only existence is checked. The expression returns TRUE or FALSE, SELECT items are ignored. It is particularly pointless to add a DISTINCT clause there.

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