All pages
Powered by GitBook
1 of 1

Loading...

&

Perform bitwise AND. This operator compares bits of two operands and returns 1 only if both corresponding bits are 1.

Syntax

&

Description

Bitwise AND. Converts the values to binary and compares bits. Only if both the corresponding bits are 1 is the resulting bit also 1.

See also .

Examples

See Also

This page is licensed: GPLv2, originally from

bitwise OR
Operator Precedence
fill_help_tables.sql
SELECT 2&1;
+-----+
| 2&1 |
+-----+
|   0 |
+-----+

SELECT 3&1;
+-----+
| 3&1 |
+-----+
|   1 |
+-----+

SELECT 29 & 15;
+---------+
| 29 & 15 |
+---------+
|      13 |
+---------+