簡體   English   中英

如何在codeigniter中使用嵌套的選擇查詢以使每個查詢獲得不同的結果

[英]how to use nested select query in codeigniter to get different result by each query

`
$poplrRec = mysql_query("SELECT * FROM ".ADD_RECIPE." ORDER BY POPULARITY DESC LIMIT 4");
while($poplrRec1=mysql_fetch_array($poplrRec))
{
    $likecount=mysql_query("SELECT RECIPE_ID, COUNT(RECIPE_ID) FROM ".RECIPE_LIKE." WHERE RECIPE_ID=".$poplrRec1['RECIPE_ID']);
    while($b=mysql_fetch_array($likecount))
    {
        $cmnt=mysql_query("SELECT RECIPE_ID, COUNT(RECIPE_ID) FROM ".RECIPE_CMMNT." WHERE RECIPE_ID=".$poplrRec1['RECIPE_ID']." AND TYPE=0");
        while($c=mysql_fetch_array($cmnt))
        {

 }} } ` 

您好,在這里我使用核心php while循環和MySQL查詢,因此我必須在codeigniter的MVC結構中使用這些類型的查詢。 就像這里,我希望將每個查詢的結果單獨用於mvc結構。 每個查詢提供一些需要在相關地方使用的數據。 請給我建議我如何在codeigniter或mvc結構中實現這些類型的php查詢。

 $result=$this->db->query("select * from tableName");
 foreach($result->result() as $row){
  // $row has the associative array 

// you can again query the database with  $this->db->query
}

嘗試編寫查詢以下格式

$query = $this->db->get('vehicles_types');
            $result = $query->result_array();

            // loop through the types e.g. the parents
            foreach( $result as $key => $row )
            {

                // add the "examples" e.g. the children to the result array
                $query = $this->db->get_where('vehicles',array('type'=>$row['id']));
                $row['examples'] = $query->result_array();
                $result[$key] = $row;

            }

            return $result;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM