DICTIONARY_GET (Lakehouse v2)
Returns the value for a specified key from a dictionary object.
Analyze Syntax
Section titled “Analyze Syntax”func.dictionary_get(<dict_name>, <key_column>, <key_value>)Analyze Examples
Section titled “Analyze Examples”func.dictionary_get('status_dict', get_column(table, 'status_code'))
┌──────────┐│ 'Active' │└──────────┘SQL Syntax
Section titled “SQL Syntax”DICTIONARY_GET(<dict_name>, <key_column>, <key_value>)SQL Examples
Section titled “SQL Examples”SELECT DICTIONARY_GET('status_dict', status_code) FROM records;
┌────────┐│ Active │└────────┘