Pregunta

I need to write a query in MS Access where all the three columns should not be equal .

For example there are three columns A B C . Each column should not be equal to each other all should have a separate value.

How can I write such a query?

¿Fue útil?

Solución

SELECT a, b, c
FROM   my_table
WHERE  a<>b AND a<>c AND b<>c

Otros consejos

If your fields are non-nullable, all you need to check is that A != B, A != C, and B != C:

SELECT *
FROM test
WHERE A <> B AND A <> C AND B <> C

The same query would be OK if fields are nullable, but NULLs are not considered a valid value.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top