I sometimes use this kind of (Postgres) construction, typically to provide test data into a larger query. Is this possible to generate in pypika?
select *
from (values (4, 41),
(29, 34),
(15, 34)) test_data(x,y)
I sometimes use this kind of (Postgres) construction, typically to provide test data into a larger query. Is this possible to generate in pypika?
select *
from (values (4, 41),
(29, 34),
(15, 34)) test_data(x,y)