Is it possible to do something like the following in BigQuery to quickly generate sample input?
SELECT * FROM values ('david',10), ('tom',20)
Or does it only accept the verbose SELECT ... UNION ALL ... format:
select 'david' name, 10 age union all select 'tom', 20;
