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

Problema nell'aggiunta di due colonne MySQL e nella restituzione del totale

Non ci sono features , contributions , likes nelle tue condizioni Inoltre stai dando un nome sbagliato come parametro user_ID .

<?php
$stmt = $dbh->prepare("SELECT sum(features + contributions + likes) AS total FROM points WHERE (ID = :user_ID)");
$stmt->bindParam(':user_ID', $user_ID, PDO::PARAM_INT); 
$stmt->execute();
$row = $stmt->fetch(PDO::FETCH_ASSOC);

echo '<h3>'. $user_ID .' have '. $row['total'] .' Points.</h3>';
?>