Possible Duplicate:
24 hours of values
Merhaba,
nasıl bir seçili gün her saat gelen bir değer elde etmek için sql yazabilirim??
12,34,22,32,45,23,23 vb: 24 değerlerini Anlamı
Tarih (Ymd) | | zamanı (00:00:00) | güç (int): | Benim tablo 3 sütun vardır
Ben bir seferde sadece 1 değerini alabilirsiniz ve bu ne istiyorum DEĞİLDİR ...
<?php
$choice = (isset($_POST['choice'])) ? date("Y-m-d",strtotime($_POST['choice'])) : date("Y-m-d");
$con = mysql_connect("localhost","root","xxxxxxxxxx");
if (!$con) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db("inverters", $con);
$sql = "SELECT date, power AS choice
FROM feed
WHERE date = '".$choice."'
ORDER BY HOUR(time)";
$res = mysql_query($sql) or die('sql='.$sql."\n".mysql_error());
$row = mysql_fetch_assoc($res);
echo $row['choice'].'<br />';
?>