Re: Spark SQL Exists Clause
; where > l_orderkey = o_orderkey > and l_commitdate < l_receiptdate > ) > group by > o_orderpriority > order by > o_orderpriority; > > > Thanks > > > > -- > Vie
Spark SQL Exists Clause
from lineitem where l_orderkey = o_orderkey and l_commitdate < l_receiptdate ) group by o_orderpriority order by o_orderpriority; Thanks -- View this message in context: http://apac