node-red-contrib-sqlbuilder 1.1.0

A "batteries included" SQL query builder for CockroachDB, MariaDB, MSSQL, MySQL, PostgreSQL, SQLite3, Oracle DB, and Amazon Redshift

npm install node-red-contrib-sqlbuilder

SQL - Module for Node-Red

Description

This is a "batteries included" SQL query builder for CockroachDB, MariaDB, MSSQL, MySQL, PostgreSQL, SQLite3, Oracle DB, and Amazon Redshift designed to be flexible, portable, and fun to use.

Building SQL manually is difficult and error prone, especially if you use multiple databases, as each has its own dialect.

This module is based on the excellent Knex.js project (https://knexjs.org), which allows to use JavaScript to generate the correct SQL.

Snapshot

SQLBuilder Basic Example

Example Queries

  • Select columns from table based on a where clause
query.select(["id", "first_name"]).from("users").where({
    id: msg.user_id
})
  • Multiple inserts

Wnat to insert multiple rows. Its easy, just add the objects to an array

query.insert([
    msg.user01,
    msg.user02
]).into('users')
  • Subquery

Example of a subquery in a WHERE IN clause

query
    .from("users")
    .whereNotIn("id",
        query
            .from("users_unsubscribed")
            .select(["user_id"]))
    .limit(1)
    .orderByRaw("RANDOM()")
    .select(["*"])

Full Query Documentation

Node Info

Version: 1.1.0
Updated 2 months, 1 week ago
License: MIT
Rating: 5.0 1

Categories

Actions

Rate:

Downloads

12 in the last week

Nodes

  • sqlbuilder

Keywords

  • sql
  • node-red
  • query-builder
  • knex

Maintainers