Hi all,
Has anyone managed to workaround this sorting limitation?
I want to sort Type 1 elements of RG by Field B -> Field C
Type 1:
Field A - Text
Field B - Type 2
Type 2:
Field C - Text
Equivalent SQL sentence
SELECT *
FROM table1 t1
JOIN table2 t2
ON t1.id = t2.id
ORDER BY t2.order_field
Cheers,
Jon