SELECT Clause
- reference
The SELECT
clause determines the result set.
Prerequisites
For you to select data from a document or keyspace, you must have the query_select
privilege on the document or keyspace.
For more details about user roles, see
Authorization.
Syntax
select-clause ::= SELECT [ ALL | DISTINCT ] ( result-expr [ ',' result-expr ]* | ( RAW | ELEMENT | VALUE ) expr [ [ AS ] alias ] )
The projection consists of an optional ALL
or DISTINCT
quantifier, followed by one of the following alternatives:
-
One or more result expressions, separated by commas.
-
A single raw expression, including a select expression and an optional alias.
ALL / DISTINCT
(Optional; default is ALL.)
SELECT ALL retrieves all of the data specified and will result in all of the specified columns, including all duplicates.
SELECT DISTINCT removes duplicate result objects from the query’s result set.
The DISTINCT clause is not blocking in nature, since it streams the input and produces the output in parallel, while consuming less memory. |
In general, SELECT ALL
results in more returned documents than SELECT DISTINCT
due to DISTINCT
's extra step of removing duplicates.
Since DISTINCT
is purely run in memory, it executes quickly, making the overhead of removing duplicates more noticeable as your recordset gets larger.
In the below table,
-
Q1's
SELECT DISTINCT
reduces the recordset to a small fraction of its original size; and while removing so many of the documents takes time, projecting the remaining small fraction is actually slightly faster than the overhead of removing duplicates. -
On the other extreme, Q2's
SELECT DISTINCT
does not reduce the recordset at all sinceMETA().id
is already unique, and thus projects the entire original recordset and shows the maximum overhead of about twice as long to execute thanSELECT ALL
.
N1QL Query | SELECT ALL | SELECT DISTINCT |
---|---|---|
Q1
|
slightly slower |
slightly faster |
Q2
|
much faster |
much slower |
DISTINCT
operatorEXPLAIN SELECT DISTINCT city FROM `travel-sample`.inventory.landmark; (1)
[
{
"plan": {
"#operator": "Sequence",
"~children": [
{
"#operator": "PrimaryScan3",
"bucket": "travel-sample",
"index": "def_inventory_landmark_primary",
"index_projection": {
"primary_key": true
},
"keyspace": "landmark",
"namespace": "default",
"scope": "inventory",
"using": "gsi"
},
{
"#operator": "Fetch",
"bucket": "travel-sample",
"keyspace": "landmark",
"namespace": "default",
"scope": "inventory"
},
{
"#operator": "Parallel",
"~child": {
"#operator": "Sequence",
"~children": [
{
"#operator": "InitialProject",
"distinct": true,
"result_terms": [
{
"expr": "(`landmark`.`city`)"
}
]
},
{
"#operator": "Distinct" (1)
}
]
}
},
{
"#operator": "Distinct" (1)
}
]
},
"text": "SELECT DISTINCT city FROM `travel-sample`.inventory.landmark;"
}
]
1 | Lines using the DISTINCT operator |
Result Expression
path ::= identifier [ '[' expr ']' ]* [ '.' path ]
The result expression may contain one of the following alternatives:
-
A star expression, preceded by an optional path.
-
A select expression, including an optional alias.
RAW / ELEMENT / VALUE
(Optional; RAW and ELEMENT and VALUE are synonyms.)
SELECT RAW reduces the amount of data returned by eliminating the field attribute.
Query
|
Query
|
Results
|
Results
|
1 | Added alias |
2 | No added alias |
There are times in which this extra layer might not be desirable since it requires extra output parsing. So the RAW qualifier specifies that the expression that follows not to be qualified, as shown in the next example.
Query
|
Query
|
Query
|
Results
|
Results
|
Results
|
Star Expression (*)
The star expression *
enables you to select all the fields from the source specified by the FROM clause.
The star expression may be preceded by a path, to select all the nested fields from within an array.
SELECT * FROM `travel-sample`.inventory.hotel;
[
{
"hotel": { (1)
"address": "Capstone Road, ME7 3JE",
"alias": null,
"checkin": null,
// ...
}
}
]
SELECT hotel.* FROM `travel-sample`.inventory.hotel;
[
{ (2)
"address": "Capstone Road, ME7 3JE",
"alias": null,
"checkin": null,
// ...
}
]
SELECT meta().id, email, city, phone, hotel.reviews[0].ratings
FROM `travel-sample`.inventory.hotel LIMIT 5;
[
{ (3)
"city": "Medway",
"email": null,
"id": "hotel_10025",
"phone": "+44 870 770 5964",
"ratings": {
"Cleanliness": 5,
"Location": 4,
"Overall": 4,
"Rooms": 3,
"Service": 5,
"Value": 4
}
},
// ...
]
1 | Added line with keyspace |
2 | No added line with keyspace |
3 | No added line with keyspace |
Select Expression
The select expression is any expression that evaluates to a field to be included in the query’s result set. At its simplest, this may be the name of a field in the data source. For example:
SELECT id, airline, stops FROM `travel-sample`.inventory.route;
The select expression may include a path, to select a nested field from within an array. For example:
SELECT schedule[0].day FROM `travel-sample`.inventory.route;
If no field name is specified, the select expression allows you to perform calculations, such as SELECT 10+20 AS Total;
or any other N1QL expression.
For details with examples, see N1QL Expressions.
AS Alias
alias ::= identifier
A temporary name of a keyspace name or field name to make names more readable or unique, such as:
SELECT schedule[0].day AS Weekday FROM `travel-sample`.inventory.route;
If you do not explicitly give a field an alias, it is given an implicit alias in the result set.
-
For a field, the implicit alias is the same as the name of the field in the input.
-
For a nested path, the implicit alias is defined as the last component in the path.
-
For any expression which does not refer to a field, the implicit alias is a dollar sign followed by a number, based on the position of the expression in the projection; for example,
$1
,$2
, and so on.
Best Practices
When possible, explicitly list all fields you want in your result set instead of using a star expression *
to select all fields, since the *
requires an extra trip over your network — one to get the list of field names and one to select the fields.
Examples
airline
keyspaceSELECT * FROM `travel-sample`.inventory.airline LIMIT 1;
[
{
"airline": {
"callsign": "MILE-AIR",
"country": "United States",
"iata": "Q5",
"icao": "MLA",
"id": 10,
"name": "40-Mile Air",
"type": "airline"
}
}
]
landmark
keyspaceSELECT * FROM `travel-sample`.inventory.landmark LIMIT 1;
[
{
"landmark": {
"activity": "see",
"address": "Prince Arthur Road, ME4 4UG",
"alt": null,
"city": "Gillingham",
"content": "Adult - £6.99 for an Adult ticket that allows you to come back for further visits within a year (children's and concessionary tickets also available). Museum on military engineering and the history of the British Empire. A quite extensive collection that takes about half a day to see. Of most interest to fans of British and military history or civil engineering. The outside collection of tank mounted bridges etc can be seen for free. There is also an extensive series of themed special event weekends, admission to which is included in the cost of the annual ticket.",
"country": "United Kingdom",
"directions": null,
"email": null,
"geo": {
"accuracy": "RANGE_INTERPOLATED",
"lat": 51.39184,
"lon": 0.53616
},
"hours": "Tues - Fri 9.00am to 5.00pm, Sat - Sun 11.30am - 5.00pm",
"id": 10019,
"image": null,
"name": "Royal Engineers Museum",
"phone": "+44 1634 822839",
"price": null,
"state": null,
"title": "Gillingham (Kent)",
"tollfree": null,
"type": "landmark",
"url": "http://www.remuseum.org.uk"
}
}
]