About 522,000 results
Open links in new tab
  1. How to declare Array variable in SQL Server? - Stack Overflow

    Jan 16, 2017 · I want to execute one query in Stored Procedure, that should loop all the array values. For example:

  2. How to store arrays in MySQL? - Stack Overflow

    That said, arrays don't map well databases which is why object-relational maps can be quite complex. Historically people have stored lists/arrays in MySQL by creating a table that describes them and …

  3. Creating a variable array in sql - Stack Overflow

    May 2, 2018 · What DBMS are you using (MySQL, PostgreSQL, SQL Server, etc)? While an array is the SQL99 standard, not all DBMS implement it and the ones that do have slightly different flavors of it.

  4. sql - How to store array or multiple values in one column - Stack …

    Jun 15, 2011 · Running Postgres 7.4 (Yeah we are in the midst of upgrading) I need to store from 1 to 100 selected items into one field in a database. 98% of the time it's just going to be 1 item entered, …

  5. Oracle PL/SQL - How to create a simple array variable?

    The "table" reference tends to be a hangover from the old PL/SQL tables naming. VARRAYs, Associative Arrays and Declared nested tables are all in-memory array types.

  6. How to parse nested JSON array using SQL Server

    I am currently able to parse most of a JSON file using SQL Server's OPENJSON WITH (... syntax. However, this particular file contains nested arrays which I do not know how to handle.

  7. How to declare an array inside MS SQL Server Stored Procedure?

    Oct 15, 2018 · I need to declare 12 decimal variables, corresponding to each month's year, with a cursor I sum values to this variables, then later I Update some sales information. I don't know if sql server …

  8. How to pass an array into a SQL Server stored procedure

    Jun 19, 2012 · How to pass an array into a SQL Server stored procedure? For example, I have a list of employees. I want to use this list as a table and join it with another table. But the list of employees …

  9. Passing an array to a query using a WHERE clause

    A few modern/secure/stable alternatives using mysqli are elsewhere on Stack Overflow: Use an array in a mysqli prepared statement: WHERE .. IN(..) query and mysqli bind_param for array of strings

  10. T-SQL: Looping through an array of known values - Stack Overflow

    T-SQL: Looping through an array of known values Asked 16 years, 1 month ago Modified 1 year, 10 months ago Viewed 256k times