I want to update rows in a table that have foe than one location associated with it but does not include certain locations. I have tried the following:
group by may_po_nbr, loc_nbr
having rowcount_big() > 1
and rowcount_big() > 1
group by may_po_nbr, loc_nbr
Both bring back even those with one location associated with it.
group by may_po_nbr, loc_nbr
having rowcount_big() > 1
and rowcount_big() > 1
group by may_po_nbr, loc_nbr
Both bring back even those with one location associated with it.