Enums
Is it possible to batch update based on id?
[{id:1, position:0}, {id:3, position:1}, {id:2, position:2}]
[{id:1, position:0}, {id:3, position:1}, {id:2, position:2}]
Using the WITH clause with inserts
Chain multiple joins
db.select().from(table1).leftjoin(table2, ...).leftjoin(table3, ...)
db.select().from(table1).leftjoin(table2, ...).leftjoin(table3, ...)
has anyone managed to get drizzle to work with tauri sql plugin?
Properly inferring Prepared Statement Return Type when executing a query
const data = await ps.execute() | ps.all() | ps.execute({ ph: 'ph'}) return type is unknown....
How to put Drizzle schemas in shared folder (monorepo) and have api's drizzle.config recognize them
 Property '[IsDrizzleTable]' is missing in type 'PgTable...How to properly infer type or add typings of a returned model with relationship in a component props
Infinite reference needs type annotation
General question: Should I use external ids or internal ids when inserting data from a third party?
Drizzlekit push fails with "database...TypeError: Cannot use 'in' operator to search for 'default'"
onConflictDoUpdate excluded with a dynamic column
onConflictDoUpdate, the problem I'm running into is that I can't dynamically set the column to update, here's my current approach:
```ts
export async function editGroupSettings(
  db: Db,
  option: string,...Error When Using isNull Filter
isNull on a nullable column. Any idea why this might be? 
Thanks!
Error: syntax error at or near "$1"...
how to make order work with selectDistinctOn in pg?

How can I generate / migrate a schema if I'm using an in-memory Postgresql?
Get return-type from QueryBuilder
I try to write a simple function, that takes a querybuilder query in and should return a object of the result type, as if I have awaited a DB with the query:
(I use another db to fetch data - but I need the type from drizzle) ...
Drizzle studio doesn't handle timestamps properly
``
CREATE TABLE users (
    id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,...
```