I have a table of serial keys
+----+---------------------+------+
| id | product_key | used |
+----+---------------------+------+
| 1 | 3C45-GH76-9V74-HLKJ | 1 |
| 2 | REDF-6KI9-00IU-4867 | 0 |
| 3 | 1111-1111-1111-1111 | 0 |
| 4 | 2222-2222-2222-2222 | 0 |
| 5 | 3333-3333-3333-3333 | 0 |
+----+---------------------+------+
I would like to get one row record that used=0 using zend framework. Then change to used=1 if that product_key had select.
I am confuse using Zend.
I think it's something like that, but how to assign "1" into used if that product key had been select?
$productKey = $this->_helper->model('ProductKeys')->fetchOne('SELECT * from product_keys WHERE used=0 LIMIT 1');