Good afternoon, what I'm trying to do is this: I have two tables
machines - stores the copier location data (address, zip, etc.).
readings - stores the machine code, counters, date, etc.
I wanted to display all records from the MACHINES table that were not in the table readings in the given period;
I'm not doing JOIN, if I put the interval, it will normally filter only machines that are within that range, but I want the opposite. I want machines that are not in that range.
I am not able to use the WHERE databinding NOT BETWEEN data1 AND data2
SELECT maquinas.codigo, maquinas.codnovo
FROM leituras RIGHT JOIN maquinas
ON (leituras.CodigoMaquina = maquinas.Codigo)
where inativa=0
AND dataleitura>'2015-02-11' and dataleitura<'2015-03-17'
and codigodono=5
If you can, give it a boost. Thanks.
Editing at 16:27: What I need, is to list ALL machines that do NOT have table readings in the specified period
Edition at 16:48 This here almost solves what I want, I'm trying to use a HAVING here to see if it will fit.
SELECT maquinas.codigo, maquinas.codnovo, MAX(leituras.dataleitura) as ultLcto
FROM
maquinas INNER JOIN leituras ON maquinas.codigo=leituras.codigomaquina
WHERE inativa=0 AND codigodono=5
GROUP BY maquinas.codigo
ORDER BY codigomaquina