select sum(vt.vote_value), vt.item_name
from Votes vt
join stories st on st.id = vt.item_name
and st.showing = 0
group by vt.item_name
To powinno dać ci wszystkie artykuły z pokazywaniem 0 i całkowitej wartości głosów. Następnie możesz przetwarzać je wiersz po wierszu i w razie potrzeby zaktualizować głosowanie.
Dodano:Nie jestem programistą PHP, głównie robię PERL, ale myślę, że to musi być coś takiego:
<?php
$query = "select sum(vt.vote_value) as vote_value, vt.item_name from Votes vt join stories st on st.id = vt.item_name and st.showing = 0 group by vt.item_name";
$result = mysql_query($query);
while($row = mysql_fetch_array($result))
{
if($row['vote_value'] > 9) {
$showing = 1;
}
else if($row['vote_value'] < -9) {
$showing = 2;
}
else {
$showing = 0;
}
$query2 = "UPDATE `stories` SET `showing` = $showing WHERE `id` = '".$row['item_name']."'";
mysql_query($query2);
}
?>