SQL ARRAY: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 24: Line 24:
</syntaxhighlight>
</syntaxhighlight>


<code>some_column</code> must be a text <code>ARRAY</code> type. The expression above evaluates to TRUE if 'value_we_search_for' is in any of the array elements. ⚠️ Important: the inclusion test '''must''' start with the value, it cannot start with ANY(...). The following expression will produce a syntax error:  
<code>some_column</code> must be a text <code>ARRAY</code> type. The expression above evaluates to TRUE if 'value_we_search_for' is in any of the array elements.  
 
⚠️ The inclusion test '''must''' start with the value, it cannot start with <code>ANY()</code>. The following expression will produce a syntax error:  
<syntaxhighlight lang='sql'>
<syntaxhighlight lang='sql'>
... WHERE ANY(some_table.some_column) = 'value_we_search_for'
... WHERE ANY(some_table.some_column) = 'value_we_search_for'

Revision as of 23:32, 24 May 2024

Internal

Overview

Declaration

SQL declaration for unidimensional arrays:

CREATE TABLE some_table (
  some_column text ARRAY
  ...
)

ARRAY can be declared for any data types.

Insert

INSERT INTO some_table (some_column, ...) VALUES (ARRAY['string1', 'string2', ...], ...)

Search in an Array

SELECT some_column FROM some_table WHERE 'value_we_search_for' = ANY(some_table.some_column)

some_column must be a text ARRAY type. The expression above evaluates to TRUE if 'value_we_search_for' is in any of the array elements.

⚠️ The inclusion test must start with the value, it cannot start with ANY(). The following expression will produce a syntax error:

... WHERE ANY(some_table.some_column) = 'value_we_search_for'

Implementation-Specific Details

PostgreSQL MySQL