sql >> Base de Datos >  >> RDS >> Mysql

Bind IS NULL o NULL cuando se usa PHP PDO y MySql

ACTUALIZAR. Por un tiempo he aprendido que todo se puede hacer en una sola consulta

$sql = 'select 1 from table where id = ? and self <=> ? and parent <=> ?';
$stm = $conn->prepare($sql);
$stm->execute([$id,$self,$parent]);
$exists = $stm->fetchColumn();

También debe modificar su consulta.

$sql = 'select count(id) as exists from table where id = ? and ';

if ($type == 1) {
    $sql .= 'self IS NULL and parent IS NULL'
    $data = [$id];
} else {
    $sql .= 'self = ? and parent = ?';
    $data = [$id,$self,$parent];
}
$stm = $conn->prepare($sql);
$stm->execute($data);