Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to join both tables:
Table1:
codCosecha,
Start,
End,
Group1
Table2:
Date,
Group2
The condition to join: (Group1=Group2) and (Date between Start and End)
Table3:
Group2,
codCosecha
Help!
Hi,
QV uses natural joins: attributes with same name are joined, others not:
NullAsValue Start, End, Date;
load
Group2 as Group
resident Table2
inner join intervalmatch(Date, Group)
Group1 as Group,
resident Table1;
Greets
Klaus