Gntrees SQL Builder
SQL builder

Simple SQL Builder.

Just a simple SQL builder for TypeScript. No more string concatenation or worrying about SQL injection. Can handle complex queries with ease.

const query = q.select(
  q.c("users.id"),
  q.c("users.name"),
)
  .from(q.t("users"))
  .where(q.c("users.age").op(">=").v(65))
  .orderBy(q.c("users.name"));