G
Guest
he he
Dear Folk,
The problem is when doing the count number like this SQL : example,
the field 'NUM' is the running num from 1 to 10, for example.
SELECT a.*, b.NUM
FROM CollectionFGREFNO AS a left outer JOIN COUNTABLE as b ON b.NUM = a.GNO;
or change to :
SELECT a.*, b.NUM
FROM CollectionFGREFNO AS a left outer JOIN COUNTABLE as b ON b.NUM <= a.GNO;
For the result is to merge both of the results, there should be no other out
flows of records while still results of the same orinal sources as the first
SQL.
Thanks
Dear Folk,
The problem is when doing the count number like this SQL : example,
the field 'NUM' is the running num from 1 to 10, for example.
SELECT a.*, b.NUM
FROM CollectionFGREFNO AS a left outer JOIN COUNTABLE as b ON b.NUM = a.GNO;
or change to :
SELECT a.*, b.NUM
FROM CollectionFGREFNO AS a left outer JOIN COUNTABLE as b ON b.NUM <= a.GNO;
For the result is to merge both of the results, there should be no other out
flows of records while still results of the same orinal sources as the first
SQL.
Thanks