QUESTION POSED ON: 16 June 2005
My experienced mainframe DB2 colleagues have warned me that coding the predicate "WHERE part_no IS BETWEEN :foo AND :bar" is less efficient than "WHERE part_no >= :foo AND <= :bar"
Is there truly a performance difference?
|