START TRANSACTION; auto commit mode: off select sum(l_extendedprice * l_discount) as revenue from lineitem where l_shipdate >= date '1995-01-01' and l_shipdate < date '1995-01-01' + interval '1' year and l_discount between 0.08 - 0.01 and 0.08 + 0.01 and l_quantity < 24; +-------------------------------------------+ | revenue | +===========================================+ | null | +-------------------------------------------+ 1 tuple COMMIT; auto commit mode: on