February 9, 2025
+ 12
You can query for documents in Couchbase using the SQL++ query language, a language based on SQL, but designed for structured and flexible JSON documents.

On this page we dive straight into using the Query Service API from the Node.js Columnar SDK. For a deeper look at the concepts, to help you better understand the Query Service, and the SQL++ language, see the links in the Further Information section at the end of this page.

Here we show queries against the Travel Sample collection, at cluster and scope level, and give links to information on adding other collections to your data.

Before You Start

This page assumes that you have installed the Node.js Columnar SDK, added your IP address to the allowlist, and created a Columnar cluster.

Create a collection to work upon by importing the travel-sample dataset into your cluster.

Querying Your Dataset

Most queries return more than one result, and you want to iterate over the results:

Scope Level
javascript
const scope = cluster.database('travel-sample').scope('inventory') let qs = ` SELECT airline, COUNT(*) AS route_count, AVG(route.distance) AS avg_route_distance FROM route GROUP BY airline ORDER BY route_count DESC ` let res = await scope.executeQuery(qs) for await (let row of res.rows()) { console.log(row) } console.log('Metadata: ', res.metadata())
Cluster Level
javascript
let qs = ` SELECT r.airline, COUNT(*) AS route_count, AVG(r.distance) AS avg_route_distance FROM \`travel-sample\`.\`inventory\`.\`route\` AS r GROUP BY r.airline ORDER BY route_count DESC ` let res = await cluster.executeQuery(qs)

Positional and Named Parameters

Supplying parameters as individual arguments to the query allows the query engine to optimize the parsing and planning of the query. You can either supply these parameters by name or by position.

Execute an async query with positional arguments:

Positional Parameters
javascript
const scope = cluster.database('travel-sample').scope('inventory') let qs = ` SELECT airline, COUNT(*) AS route_count, AVG(route.distance) AS avg_route_distance FROM route WHERE sourceairport = $1 AND distance >= $2 GROUP BY airline ORDER BY route_count DESC ` let res = await scope.executeQuery(qs, { positionalParameters: ['SFO', 1000], })

Execute an async query with named arguments:

Named Parameters
javascript
const scope = cluster.database('travel-sample').scope('inventory') let qs = ` SELECT airline, COUNT(*) AS route_count, AVG(route.distance) AS avg_route_distance FROM route WHERE sourceairport = $sourceAirport AND distance >= $distance GROUP BY airline ORDER BY route_count DESC ` let res = await scope.executeQuery(qs, { namedParameters: {sourceAirport: 'SFO', distance: 1000} })

Further Information

The SQL++ for Analytics Reference offers a complete guide to the SQL++ language for both of our analytics services, including all of the latest additions.