Mysql
 sql >> Base de données >  >> RDS >> Mysql

Incrémenter une colonne dans MySQL

Oui il y a. Voici un exemple utilisant des produits et incrémentant un champ de quantité :

$table     = 'products'; 
$data      = array('prd_qnty' => new Zend_Db_Expr('prd_qnty + 1')); 
$where[] = $db->quoteInto('pr_id = ?', $this->pr_id); 
$db->update($table, $data, $where);