M
Mike
The following doesn't seem to be working. It seems to get the computer bogged
down. Is there another solution to this? or can someone show me how to do
this in design view?
Thanks in advance.
SELECT *
FROM tableName As a
WHERE NOT "rst" = ANY(SELECT line
FROM tableName As b
WHERE b.[trans#] = a.[trans#])
Note that you can change the where clause to:
WHERE NOT "rst" IN(SELECT line
FROM tableName As b
WHERE b.[trans#] = a.[trans#])
both are equivalent.
Vanderghast, Access MVP
down. Is there another solution to this? or can someone show me how to do
this in design view?
Thanks in advance.
SELECT *
FROM tableName As a
WHERE NOT "rst" = ANY(SELECT line
FROM tableName As b
WHERE b.[trans#] = a.[trans#])
Note that you can change the where clause to:
WHERE NOT "rst" IN(SELECT line
FROM tableName As b
WHERE b.[trans#] = a.[trans#])
both are equivalent.
Vanderghast, Access MVP