I have two tables with a one to many relationship. Currently I've linked them as below:
select 0
use shares && child
set order to client
select 0
use client && Parent
set relation to client.sysref into shares
set order to sysref
seek 101
The shares table can have many records associated with the client table. I want to skip 1 record at a time in the child table, but only for the client record selected. Is there a way I can do it without skipping one and checking the linked fields still match?
select 0
use shares && child
set order to client
select 0
use client && Parent
set relation to client.sysref into shares
set order to sysref
seek 101
The shares table can have many records associated with the client table. I want to skip 1 record at a time in the child table, but only for the client record selected. Is there a way I can do it without skipping one and checking the linked fields still match?