Mega Code Archive

 
Categories / MySQL / Function
 

Move the binary value 11 three bits to the left

mysql> mysql> SELECT B'11' << 3; +------------+ | B'11' << 3 | +------------+ |         24 | +------------+ 1 row in set (0.00 sec) mysql> mysql>