johnherman
MIS
SELECT ADJUSTER_NO, MAX(CASE_OPEN_DATE)
FROM AUTO_CLAIM GROUP BY ADJUSTER_NO
This query returns more than one result; that is, there are sometimes more than one Auto Claims opened by an Adjuster on the same day. I only need one record; it doesn't matter which, because I want to equi-join to it for a later update to a separate table.
ideas?
Sometimes the grass is greener on the other side because there is more manure there - original.
FROM AUTO_CLAIM GROUP BY ADJUSTER_NO
This query returns more than one result; that is, there are sometimes more than one Auto Claims opened by an Adjuster on the same day. I only need one record; it doesn't matter which, because I want to equi-join to it for a later update to a separate table.
ideas?
Sometimes the grass is greener on the other side because there is more manure there - original.