About 163,000 results
Open links in new tab
  1. SQL Array: Using, creating, and inserting arrays in SQL.

    Sep 9, 2025 · Here, we cover an introduction to SQL array and give examples to make it easier for you to understand how to create, insert, and use arrays in SQL.

  2. How to declare Array variable in SQL Server? - Stack Overflow

    Jan 16, 2017 · As others said in this post, there's no array type because of the natural behavior of a DB and because of that there's no for or foreach, but there are tables and they could work kinda the same.

  3. Working With Arrays | SQL Tutorial Documentation on data.world

    More modern SQL databases can store multiple, indexed values of the same data type in a single field called an array. There is no standard set of SQL functions for arrays. Instead, different flavors of SQL …

  4. PostgreSQL: Documentation: 18: 8.15. Arrays

    Nov 13, 2025 · The ARRAY constructor syntax (see Section 4.2.12) is often easier to work with than the array-literal syntax when writing array values in SQL commands. In ARRAY, individual element …

  5. Complete Guide to Array operations in SQL with Examples - EDUCBA

    Feb 27, 2023 · Guide to Array in SQL. Here we discuss an introduction to Array in SQL, how to create and insert array with examples for better understanding.

  6. Work with arrays | BigQuery | Google Cloud Documentation

    5 days ago · With GoogleSQL, you can construct array literals, build arrays from subqueries using the ARRAY function, and aggregate values into an array using the ARRAY_AGG function.

  7. Arrays and Lists in SQL Server (Short version) - Sommarskog

    This is a short article directed to readers with a limited experience of SQL Server programming that discusses how to handle a list of values delimited by commas or some other separator.

  8. SQL 'ARRAY' Data Type: A Comprehensive Tutorial - Reintech

    Sep 30, 2023 · Learn the SQL ARRAY data type, a versatile tool for managing large datasets in SQL. Discover how to create, manipulate, and query ARRAYs in our comprehensive tutorial.

  9. Working With Arrays

    Use of the array constructor in the select clause is optional. If no array constructor is used, an array will still be constructed, but only if the select-clause expression does indeed return more than one item. If …

  10. How to Work with Arrays and JSON Data in SQL - Datatas

    This introduction will cover the basics of working with arrays and JSON data in SQL, including how to create, query, and manipulate them in your database queries.