Why is my WHERE clause not working as intended?

408 Views Asked by At

I am running a query to apply a number depending on the WHERE clause which verifies information from different tables

UPDATE EstadoDoc  
SET PuntajePrevio = 10
FROM Investigador i, Autores a, Documentos d, EstadoDoc e, Periodo p
WHERE i.IdInv = a.IdInv 
  AND a.IdDoc = d.IdDoc  
  AND d.Tipo = 'AR'   
  AND e.Estado IN ('A', 'RyR')
  AND p.FechaDesde <= e.FechaEst 
  AND p.FechaHasta >= e.FechaEst 
  AND p.IdPeriodo = 2019

This is the query I'm running and it's supposed to put the value 10 in PuntajePrevio depending on the WHERE clause, but I'm noticing it's not working correctly because it is applying the value to 2 column were it shouldn't.

To further explain here is a screenshot of the data it affected - it should be only taking into consideration all the ones that have d.tipo = 'AR' but is it not.

As you can see it affected the rows with IdDoc =012, 000 and 005 in the table EstadoDoc

But as you can see in the table Documentos the rows with IdDoc=012 and 000 have tipo = AC and not AR, im wondering why is it still taking them in consideration even when the clause specifies tipo='AR'

0

There are 0 best solutions below