79631362

Date: 2025-05-21 01:15:58
Score: 1
Natty:
Report link

Why dont you create another column which is sum of ID+ZONE
like below

create table profile
(
    id      int,
    zone    text,
    idZone  text
    data    blob,
    primary key ((idZone))
);

and do like this SELECT data FROM profile WHERE idZone IN (:idZones)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Why do
  • Low reputation (0.5):
Posted by: satyesht