How do I write a select with multiple subqueries?

Hey there, I'm trying to figure out how to write this postgres query using Drizzle:

select query_a.*, query_b.* from (select * from gpus) as query_a, (select * from products) as query_b;
Was this page helpful?