"Ed Nash" <ask.me (AT) specifically (DOT) pls> wrote
Quote:
Here's an (untested) idea with psuedo-SQL. If fields A and B are already
CHAR, then there would be no need to CAST. Make sure you get the exact
CAST syntax correct by reading the Paradox LocalSQL help as I am just
guessing here.
SELECT * FROM Table1 WHERE CAST(A AS CHAR) || CAST(B AS CHAR) NOT IN
('ConcatenatedValueOne', 'ConcatenatedValueTwo') |
Quite interesting, but I've already done it like that:
WHERE NOT (
(A = 1 AND B = 1 ) OR
(A = 2 AND B = 3 ));
Regards
Andrew