AES_DECRYPT (Lakehouse v2)
Decrypts a value encrypted with AES.
Analyze Syntax
Section titled “Analyze Syntax”func.aes_decrypt(<encrypted>, <key>)Analyze Examples
Section titled “Analyze Examples”func.aes_decrypt(get_column(table, 'encrypted_data'), 'secret_key')
┌──────────────┐│ 'plain text' │└──────────────┘SQL Syntax
Section titled “SQL Syntax”AES_DECRYPT(<encrypted>, <key>)SQL Examples
Section titled “SQL Examples”SELECT AES_DECRYPT(encrypted_col, 'secret_key') FROM data;
┌────────────┐│ plain text │└────────────┘