coral-sql
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i coral-sql

Weekly Downloads

57

Version

1.0.1

License

MIT

Unpacked Size

59.1 kB

Total Files

58

Last publish

Collaborators

  • mizuki_r