MAP_DELETE (Lakehouse v1)
Returns an existing MAP with one or more keys removed.
SQL Syntax
Section titled “SQL Syntax”MAP_DELETE( <map>, <key1> [, <key2>, ... ] )MAP_DELETE( <map>, <array> )Arguments
Section titled “Arguments”| Arguments | Description |
|---|---|
<map> | The MAP that contains the KEY to remove. |
<keyN> | The KEYs to be omitted from the returned MAP. |
<array> | The Array of KEYs to be omitted from the returned MAP. |
Return Type
Section titled “Return Type”Map.
SQL Examples
Section titled “SQL Examples”SELECT MAP_DELETE({'a':1,'b':2,'c':3}, 'a', 'c');┌───────────────────────────────────────────┐│ map_delete({'a':1,'b':2,'c':3}, 'a', 'c') │├───────────────────────────────────────────┤│ {'b':2} │└───────────────────────────────────────────┘
SELECT MAP_DELETE({'a':1,'b':2,'c':3}, ['a', 'b']);┌─────────────────────────────────────────────┐│ map_delete({'a':1,'b':2,'c':3}, ['a', 'b']) │├─────────────────────────────────────────────┤│ {'c':3} │└─────────────────────────────────────────────┘