English 中文(简体)
Join two table incodeigniter
原标题:Join two tables in codeigniter

I am trying to join two tables. Lets say t1 and t2. t1 has fk t2_id. but when I run the code nothing is shown in my view.

<<>斯特凡>

 //..
 $data[ city ]= $this->state_model->name();
 $this->load->view( viewt , $data);

<<>Model>:

    function name(){
    $this->db->select( * );
    $this->db->from( state );
    $this->db->join( city ,  city.state_id = state.id );
    $sql = $this->db->get();

    if ($sql->num_rows () >0) {
        foreach($sql->result() as $row) {
        $this->db->where( state_id , state.id );
        $r = $this->db->get( city );
        }

    return $r->result();

     }
     else {
     return null;   
            }

View:

 <?php foreach($city as $row):?>
  <?php echo $row->cityname; ?></br></br></br>
  <?php endforeach;?></br></br>

预 收

询问:

  SELECT `id`, `statename`
  FROM (`state`)
  ORDER BY `id` ASC

  SELECT *
FROM (`state`)
JOIN `city` ON `city`.`state_id` = `state`.`id`  

  SELECT *
  FROM (`city`)
  WHERE `state_id` =  state.id   

  SELECT *
  FROM (`city`)
  WHERE `state_id` =  state.id   

  SELECT *
  FROM (`city`)
  WHERE `state_id` =  state.id   
最佳回答

你的美元变数只能是最后的变数,因此,这一功能只能回到最后的结局。

if ($sql->num_rows () >0) {
    foreach($sql->result() as $row) {
    $this->db->where( state_id ,$row->state_id);
    $r[] = $this->db->get( city )->row();
    }

return $r;
问题回答

最新查询:$this->db->last_query()

我不明白,为什么你需要在一间休息室内进行第二次询问。 你可以这样做:

if ($sql->num_rows() > 0) {
    return $sql->result();
}

?

因此,你从你们的加入中重新获得三个记录,因此我们知道这项工作。 但是,你再次提出其他3个问题,认为是不正确的。 为此:

if ($sql->num_rows () >0) {
    $r = array();
    foreach($sql->result() as $row) {

        // here, you need to replace  state.id  with the actual
        // results from your join query ($row->id which is the id
        // from the state table
        $this->db->where( state_id ,$row->id);
        $r[] = $this->db->get( city )->result();
    }
    return $r;
 }
 else 
 {
     return null;   
 }

因此,现在,你应当取得一系列成果,并且能够与你的看法相呼应。





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签