Skip to content

Returns the value for a specified key from a dictionary object.

func.dictionary_get(<dict_name>, <key_column>, <key_value>)
func.dictionary_get('status_dict', get_column(table, 'status_code'))
┌──────────┐
'Active'
└──────────┘
DICTIONARY_GET(<dict_name>, <key_column>, <key_value>)
SELECT DICTIONARY_GET('status_dict', status_code) FROM records;
┌────────┐
│ Active │
└────────┘