VALUES Defines a literal inline table. Return a table with one column and three rows: VALUES (2, 'b'), (3, 'c')Return table with column id and name: SELECT * FROM ( VALUES (1, 'a'), (2, 'b'),) AS t (id, name)INSERT,