MySQL - başka bir sorguya dayalı bir sorgu

3 Cevap php

Ben aşağıda örnek sorgu kod benzeyen sorguları çok yazmak. Ben daha verimli kod / script olup olmadığını merak ediyorum?

$query1 ="SELECT * FROM table1 WHERE date >= '$todaysdate' ";
$result1 = mysql_query($query1)
    or die ("Error in query: $query1. " . mysql_error());
if (mysql_num_rows($result1) > 0) {
    while($row1 = mysql_fetch_object($result1)) {

        echo "$row1-date";

        $query2 ="SELECT * FROM table2 WHERE table1ID >= '$row1-table1ID' ";
        $result2 = mysql_query($query2)
            or die ("Error in query: $query2. " . mysql_error());
        if (mysql_num_rows($result2) > 0) {
            while($row2 = mysql_fetch_object($result2)) {
                echo "$row->datatable2";
            }
        }
    }
}

3 Cevap

Aşağıdaki örnekte olduğu gibi, SQL JOINs kullanmayı deneyin:

SELECT 
    * 
FROM 
    table1 
INNER JOIN 
    table2 ON (table2.table1ID = table1.ID)
WHERE 
    table1.date >= '2009-12-20';

Ben tabloları yapısı hakkında bilmiyorum, ama bir katılmak kullanır ki ben kodunuzu modifiye ettik:

$query = 'SELECT table1.date, table2.datatable2 FROM table1, table2 WHERE table1.date >= \''.$todaysdate.'\' AND table2.table1ID >= table1.table1ID';
$result = mysql_query($query)
    or exit('Error in query: '.$query.' '.mysql_error());

if (mysql_num_rows($result) > 0)
{
    while($row = mysql_fetch_object($result))
    {
    	echo $row->date;
    	echo $row->datatable2;
    }
}

Bu durumda, virgülle ayrılmış DAN ile birden fazla tabloları seçin, ama aynı zamanda (ilk cevap bağlantıya bakınız) SAĞ JOIN / / SOL DIŞ INNER / kullanabilirsiniz.


You can use PDO.
Your queries should look like this..

$sth = $dbh->prepare("SELECT name, colour FROM fruit");
$sth->execute();

$result = $sth->fetchAll(PDO::FETCH_COLUMN);
// OR
$result = $sth->fetchAll(PDO::FETCH_OBJ);
var_dump($result);

PDO MANUAL: http://php.net/manual/en/book.pdo.php