v.18.16New Feature
Added joinGet Function for Dictionary-like Access to Join Tables
Added thejoinGetfunction that allows you to use aJointype table like a dictionary. Amos Bird
Why it matters
This feature solves the problem of efficiently extracting values fromJoin tables by key without performing a full join operation, improving query performance and simplifying syntax for users.How to use it
Use thejoinGet function by specifying the Join table, the column you want to retrieve, and the key to look up. For example:SELECT joinGet(join_table, 'column_name', key_column) FROM table