Specify a value or list of values to construct a row value.
Syntax
<row value expression> ::= <explicit row value constructor>
<row value constructor element> [ { , <row value constructor element> }... ] |
| | | |
<contextually typed value specification> |
<default specification> ::= DEFAULT
<contextually typed row value constructor element> [ { , <contextually typed row value constructor element> }... ] |
Notes
♦ | Row value constructors with more than 1 row value element are only supported in the INSERT statement in NexusDB V3 SQL. |
Examples
1) The following example selects students from California and New York:
SELECT studentName, state
FROM students
WHERE state IN ( 'CA', 'NY' )
2) | The following example inserts two new rows into the documents table: |
INSERT into documents ( documentID, title )
VALUES ( NEWGUID, 'NexusDB main features' ), ( NEWGUID, 'NexusDB special features' )
Conformance
SQL:2003 standard |
- |
Core SQL |