Row value constructor
- Last Updated: May 12, 2026
- 1 minute read
- OpenAccess SDK
- Version 8.1
- Documentation
A row value constructor is a parenthesized list of values.
Example
The following expression:
WHERE c1=CA AND c2=CB AND c3=CC
can be written using row value constructor as:
WHERE (c1, c2, c3) = (CA, CB, CC)