Computes a set of rows.

Synopsis

  1. VALUES ( <expression> [, ...] ) [, ...]
  2. [ORDER BY <sort_expression> [ ASC | DESC | USING <operator> ] [, ...] ]
  3. [LIMIT { <count> | ALL } ]
  4. [OFFSET <start> [ ROW | ROWS ] ]
  5. [FETCH { FIRST | NEXT } [<count> ] { ROW | ROWS } ONLY ]

Description

VALUES computes a row value or set of row values specified by value expressions. It is most commonly used to generate a “constant table” within a larger command, but it can be used on its own.

When more than one row is specified, all the rows must have the same number of elements. The data types of the resulting table’s columns are determined by combining the explicit or inferred types of the expressions appearing in that column, using the same rules as for UNION.

Within larger commands, VALUES is syntactically allowed anywhere that SELECT is. Because it is treated like a SELECT by the grammar, it is possible to use the ORDER BY, LIMIT (or equivalent FETCH FIRST), and OFFSET clauses with a VALUES command.

Parameters

expression

A constant or expression to compute and insert at the indicated place in the resulting table (set of rows). In a VALUES list appearing at the top level of an INSERT, an expression can be replaced by DEFAULT to indicate that the destination column’s default value should be inserted. DEFAULT cannot be used when VALUES appears in other contexts.

sort_expression

An expression or integer constant indicating how to sort the result rows. This expression may refer to the columns of the VALUES result as column1, column2, etc. For more details, see “The ORDER BY Clause” in the parameters for SELECT.

operator

A sorting operator. For more details, see “The ORDER BY Clause” in the parameters for SELECT.

LIMIT count

OFFSET start

The maximum number of rows to return. For more details, see “The LIMIT Clause” in the parameters for SELECT.

Notes

VALUES lists with very large numbers of rows should be avoided, as you may encounter out-of-memory failures or poor performance. VALUES appearing within INSERT is a special case (because the desired column types are known from the INSERT’s target table, and need not be inferred by scanning the VALUES list), so it can handle larger lists than are practical in other contexts.

Examples

A bare VALUES command:

  1. VALUES (1, 'one'), (2, 'two'), (3, 'three');

This will return a table of two columns and three rows. It is effectively equivalent to:

  1. SELECT 1 AS column1, 'one' AS column2
  2. UNION ALL
  3. SELECT 2, 'two'
  4. UNION ALL
  5. SELECT 3, 'three';

More usually, VALUES is used within a larger SQL command. The most common use is in INSERT:

  1. INSERT INTO films (code, title, did, date_prod, kind)
  2. VALUES ('T_601', 'Yojimbo', 106, '1961-06-16', 'Drama');

In the context of INSERT, entries of a VALUES list can be DEFAULT to indicate that the column default should be used here instead of specifying a value:

  1. INSERT INTO films VALUES
  2. ('UA502', 'Bananas', 105, DEFAULT, 'Comedy', '82
  3. minutes'),
  4. ('T_601', 'Yojimbo', 106, DEFAULT, 'Drama', DEFAULT);

VALUES can also be used where a sub-SELECT might be written, for example in a FROM clause:

  1. SELECT f.* FROM films f, (VALUES('MGM', 'Horror'), ('UA',
  2. 'Sci-Fi')) AS t (studio, kind) WHERE f.studio = t.studio AND
  3. f.kind = t.kind;
  4. UPDATE employees SET salary = salary * v.increase FROM
  5. (VALUES(1, 200000, 1.2), (2, 400000, 1.4)) AS v (depno,
  6. target, increase) WHERE employees.depno = v.depno AND
  7. employees.sales >= v.target;

Note that an AS clause is required when VALUES is used in a FROM clause, just as is true for SELECT. It is not required that the AS clause specify names for all the columns, but it is good practice to do so. The default column names for VALUES are column1, column2, etc. in Greenplum Database, but these names might be different in other database systems.

When VALUES is used in INSERT, the values are all automatically coerced to the data type of the corresponding destination column. When it is used in other contexts, it may be necessary to specify the correct data type. If the entries are all quoted literal constants, coercing the first is sufficient to determine the assumed type for all:

  1. SELECT * FROM machines WHERE ip_address IN
  2. (VALUES('192.168.0.1'::inet), ('192.168.0.10'),
  3. ('192.0.2.43'));

Note

For simple IN tests, it is better to rely on the list-of-scalars form of IN than to write a VALUES query as shown above. The list of scalars method requires less writing and is often more efficient.

Compatibility

VALUES conforms to the SQL standard. LIMIT and OFFSET are Greenplum Database extensions; see also under SELECT.

See Also

INSERT, SELECT

Parent topic: SQL Commands