|
Good day Erman, Thanks, we are clear on this, but I would expect that if I query the final table they should have the same amount of records for set1 as for set2. For example:
SELECT count(*) from APPS.FND_FLEX_VALUES_TL ;
--- ANSWER = 119649
SELECT ZD_EDITION_NAME, count(*) from APPLSYS.FND_FLEX_VALUES_TL group by ZD_EDITION_NAME;
-- ANSWER
SET2 119649
SET1 119594
Why SET1 and SET2 do not have the same number of registers?
|