How to make a select from "materialized_view" where clause
Hello guys, maybe you can help me, look that example:
I have a simple
Using PSQL i can make a select directly into
What do I need to do to pass a clause in a materialized view using drizzle-orm?
I have a simple
table with rows and one materialized view like this in PostgresSQL:Using PSQL i can make a select directly into
mv_test like a SELECT * FROM "mv_test" WHERE "name" = 'foo'; but i can't do it using drizzle-orm, looks:What do I need to do to pass a clause in a materialized view using drizzle-orm?
