SQL output without a table using VALUES syntax

Code
-- MySQL 8.0.19
VALUES ROW('string', 100, null), ROW('foo', 200, null);

-- SQL
VALUES ('string2', 300, null), ('foo2', 400, null);
Result
column_0column_1column_2
string100null
foo200null


column_0column_1column_2
string2300null
foo2400null