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:
2 Replies
@Alan I believe you are trying to do a cross join
see https://github.com/drizzle-team/drizzle-orm/issues/1414
workaround is to use
fullJoin(column, sql``true``)
Thanks!