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

Bind IS NULL o NULL quando si utilizza PHP PDO e MySql

AGGIORNARE. Da un by ho imparato che tutto può essere fatto in una query

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

Devi modificare anche la tua richiesta.

$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);