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

Verifica se i dati esistono nel database

Consenti al database di contare e recuperare i dati di conteggio dalla query.

$result = mysql_query('SELECT COUNT(*) FROM `table` WHERE `field` = ...');
if (!$result) {
    die(mysql_error());
}
if (mysql_result($result, 0, 0) > 0) {
    // some data matched
} else {
    // no data matched
}