Mysql
 sql >> Database >  >> RDS >> Mysql

Come faccio a confrontare (AND) due stringhe che rappresentano una maschera binaria in mysql?

Puoi usare conv , ad es.

select conv('1100', 2, 10) & conv('0110', 2, 10);

Ri commento, sembra funzionare per me:

mysql> select conv('1001', 2, 10) & conv('0110', 2, 10) = 0;
+-----------------------------------------------+
| conv('1001', 2, 10) & conv('0110', 2, 10) = 0 |
+-----------------------------------------------+
|                                             1 |
+-----------------------------------------------+
1 row in set (0.00 sec)

mysql> select conv('1001', 2, 10) & conv('0111', 2, 10) = 0;
+-----------------------------------------------+
| conv('1001', 2, 10) & conv('0111', 2, 10) = 0 |
+-----------------------------------------------+
|                                             0 |
+-----------------------------------------------+
1 row in set (0.00 sec)