0.0.3-3 • Published 3 years ago

coral-sql v0.0.3-3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

coral-sql

npm version CI

The nodejs module for building SQL by complec and related like coral.

Installation

> npm install coral-sql
> yarn add coral-sql

Usage

import { createBuilder } from 'coral-sql'

const [sql, bindings] = createBuilder()
  .columns('age')
  .columns(unescape('COUNT(*)'), 'value')
  .from('users')
  .where('enabled', true)
  .groupBy('age')
  .having('value', '>=', 10)
  .orderBy('value', 'desc')
  .toSQL()

const query = await connection.query(sql, bindings)
// SELECT `age`, COUNT(*) AS `value` FROM `users` WHERE `enabled` = ? GROUP BY `age` HAVING `value` >= ? ORDER BY `value` DESC
// [1, 10]

Documentation

Document is here.

0.0.3-1

3 years ago

0.0.3-0

3 years ago

0.0.3-3

3 years ago

0.0.3-2

3 years ago

0.0.2-10

3 years ago

0.0.2-9

3 years ago

0.0.2-8

3 years ago

0.0.2-6

3 years ago

0.0.2-2

3 years ago

0.0.1-0

3 years ago

0.0.0

3 years ago