mare arcis
DTDrizzle Team
•Created by mare arcis on 4/19/2024 in #help
Can I see generated raw sql query that is generated from drizzle-orm query?
Trying to sanity check my query, would be nice to see the query sent in. For example, if I send in:
db.update(table).set({ some: 'obj'}).where(eq(table.field, 'newval'));
would equate to:
UPDATE table SET some = 'obj' WHERE field = 'newval';
3 replies