(no title)
pruetj | 2 years ago
RANGE OF t IS table
RETRIEVE INTO target (t.column1, t.column2)
WHERE t.condition
Instead of SELECT t.column1, t.column2
FROM table t
WHERE t.condition
I still find the joins to be more readable: RANGE OF t1 IS table1
RANGE OF t2 IS table2
RETRIEVE INTO target (t1.column, t2.column) WHERE t1.common = t2.common
No comments yet.