sql >> Database >  >> RDS >> Mysql

Variabelen gebruiken in MySQL UPDATE (PHP/MySQL)

$query = mysql_query("UPDATE article set com_count = $comments_count WHERE article_id = $art_id");

Je verprutste de aanhalingstekens en concats.

Je kunt inline vars gebruiken zoals in het vorige voorbeeld of ze samenvoegen zoals:

$query = mysql_query("UPDATE article set com_count = " . $comments_count . " WHERE article_id = " . $art_id);



  1. PostgreSQL voor Windows ontwikkelen, deel 3

  2. JSON_VALUE() in MySQL

  3. Ansible idempotent MySQL installatie Playbook

  4. Meer showplan-verbeteringen? Ja graag!