Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created May 17, 2024 21:31
Show Gist options
  • Save PaulieScanlon/8c83e0520be81f3785787081c6f60fc4 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/8c83e0520be81f3785787081c6f60fc4 to your computer and use it in GitHub Desktop.
Select Example Drizzle ORM query
.select({
id: users.user_id,
first_name: users.first_name,
last_name: users.last_name,
email: users.email,
role: users.role,
})
.from(users)
.where(eq(users.role, 'admin'))
.orderBy(users.last_name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment