sql >> Base de Datos >  >> RDS >> Mysql

Problemas para agregar dos columnas mysql y devolver el total

No hay features , contributions , likes en tu condición También está dando un nombre incorrecto como parámetro 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>';
?>