Lines Matching refs:EXPR

33   {(EXPR) (EXPR)}
34 {{ -EXPR} {-EXPR}}
46 {{EXPR | EXPR} {EXPR | EXPR}}
47 {(abs(EXPR)/abs(EXPR)) (abs(EXPR)/abs(EXPR))}
49 {case when BOOL then EXPR else EXPR end}
53 {case when BOOL then EXPR when BOOL then EXPR else EXPR end}
57 {case EXPR when EXPR then EXPR else EXPR end}
58 {(((EXPR)==(EXPR))?EXPR:EXPR)}
65 {coalesce((select max(EXPR) from t1 where BOOL),EXPR)}
66 {[coalesce_subquery [expr {EXPR}] [expr {BOOL}] [expr {EXPR}]]}
69 {coalesce((select EXPR from t1 where BOOL),EXPR)}
70 {[coalesce_subquery [expr {EXPR}] [expr {BOOL}] [expr {EXPR}]]}
78 {EXPR=EXPR ((EXPR)==(EXPR))}
79 {EXPR<EXPR ((EXPR)<(EXPR))}
80 {EXPR>EXPR ((EXPR)>(EXPR))}
81 {EXPR<=EXPR ((EXPR)<=(EXPR))}
82 {EXPR>=EXPR ((EXPR)>=(EXPR))}
83 {EXPR<>EXPR ((EXPR)!=(EXPR))}
85 {EXPR between EXPR and EXPR}
86 {[betweenop [expr {EXPR}] [expr {EXPR}] [expr {EXPR}]]}
89 {EXPR not between EXPR and EXPR}
90 {(![betweenop [expr {EXPR}] [expr {EXPR}] [expr {EXPR}]])}
93 {EXPR in (EXPR,EXPR,EXPR)}
94 {([inop [expr {EXPR}] [expr {EXPR}] [expr {EXPR}] [expr {EXPR}]])}
97 {EXPR not in (EXPR,EXPR,EXPR)}
98 {(![inop [expr {EXPR}] [expr {EXPR}] [expr {EXPR}] [expr {EXPR}]])}
101 {EXPR in (select EXPR from t1 union select EXPR from t1)}
102 {[inop [expr {EXPR}] [expr {EXPR}] [expr {EXPR}]]}
105 {EXPR in (select AGG from t1 union select AGG from t1)}
106 {[inop [expr {EXPR}] [expr {AGG}] [expr {AGG}]]}
129 {{count(distinct EXPR)} {[one {EXPR}]}}
130 {{cast(avg(EXPR) AS integer)} (EXPR)}
131 {min(EXPR) (EXPR)}
132 {max(EXPR) (EXPR)}
152 regsub -all {EXPR} $a X a
175 proc generate_expr {{e EXPR}} { argument
186 incr cnt [regsub {EXPR} $e [lindex $re 0] e]
187 regsub {EXPR} $tcle [lindex $re 1] tcle
297 foreach {sqle tcle} [generate_expr EXPR] break;