BIN_SHL()
Bitwise left-shift
BIGINT or INT128 depending on the first argument
BIN_SHL (number, shift)
| Parameter | Description | 
|---|---|
number  | 
A number of an integer type  | 
shift  | 
The number of bits the number value is shifted by  | 
Returns the first argument bitwise left-shifted by the second argument, i.e. a << b or a·2b.