VALUES (value,...)
VALUES command
The VALUES command is used to construct a simple table.
Example syntax
VALUES (value,...), (valueX,...) ...
A VALUES command with a single value set is equivalent to SELECT value, …
.
A VALUES command with multiple values sets is equivalent to a UNION ALL of simple SELECTs,
for example SELECT value, …. UNION ALL SELECT valueX, …
.