VALUES

      Defines a literal inline table.

      Return a table with one column and three rows:

      1. VALUES
      2. (2, 'b'),
      3. (3, 'c')

      Return table with column id and name:

      1. SELECT * FROM (
      2. VALUES
      3. (1, 'a'),
      4. (2, 'b'),
      5. ) AS t (id, name)

      INSERT,