for each order no-lock:
for each order-line no-lock where order-line.orderNum = order.orderNum:
display
order.orderNum
order-line.orderLine
order-line.description
order-line.amount
.
end.
end.
or you can combine the two FOR EACH's and perform a join like so:
Code:
for each order no-lock,
each order-line no-lock where order-line.orderNum = order.orderNum:
display
order.orderNum
order-line.orderLine
order-line.description
order-line.amount
.
end.
i have one table with nearly 600000 and the second one with nearly 1000000 Datasete, so i can i select the data only or example a time range of one month which i can only select in the first table?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.