- $ psql -AXqt -p5414 -c 'select *
- from (values
- now(), now()
- )
- )
- as t(a,b);
- '
- ERROR: syntax error at or near ")"
- LINE 3: now(), now()
- ^
- $ psql -AXqt -p5414 -c 'select *
- from (values
- (
- now(), now()
- )
- )
- as t(a,b);
- '
- 2023-08-07 15:29:26.761275+01|2023-08-07 15:29:26.761275+01