1 2 3 4 5 6 7 8 9 10 11 12 13 14
# sel000011 # # Versions # -------- # 3.22 # 3.23 # # Description # ----------- # Numeric bitmoving comparisons. # Testing <<, >>. # @r/3.23/sel000011.result SELECT 1 << 32,1 << 63, 1 << 64, 4 >> 2, 4 >> 63, 1<< 63 >> 60;