Mega Code Archive

 
Categories / MySQL Tutorial / Data Types
 

Shifts a number to the left ()

mysql> mysql> SELECT 1 << 2; +--------+ | 1 << 2 | +--------+ |      4 | +--------+ 1 row in set (0.00 sec) mysql>