Drizzle ORM Query Builder Only Returning One Row
Aren't these two queries the same?
I'm trying to fetch all rows from the
products
table. Raw SQL query execution works fine and returns all rows:
But using the standalone query builder, only one row is returned:
Do I miss something here?
I'm using MySQL with Next.js2 Replies