query.expr_xin (view)

This is a database view, not a base table. It has no triggers, indexes, or FK constraints of its own. Querying this view may be more efficient than joining the underlying tables directly.

Columns

Column Type Nullable Notes

id

integer

Yes

parenthesize

boolean

Yes

parent_expr

integer

Yes

seq_no

integer

Yes

left_operand

integer

Yes

subquery

integer

Yes

negate

boolean

Yes

View Definition

 SELECT expression.id,
    expression.parenthesize,
    expression.parent_expr,
    expression.seq_no,
    expression.left_operand,
    expression.subquery,
    expression.negate
   FROM query.expression
  WHERE expression.type = 'xin'::text;