7

所以我有两个表,我想从表 1 中获取满足 where 子句条件的所有行,然后根据连接条件将它们与表 2 连接起来。

这是示例表:

table1:

col1   col2  col3
1      a     val1
2      b     val2
3      c     val3

table2:

col1   col3
1      someval1
2      someval2
3      someval3

现在我想获取表 1 中 col1 = 2 的所有行,并将这些行与表 2 中的行(其中 table2.col1 = table1.col1)连接起来。那有意义吗?

4

3 回答 3

18

自从我编写 CI 以来已经有一段时间了,但是根据这个 docs page,您的解决方案可能如下所示:

$this->db->select('*');
$this->db->from('table1');
$this->db->join('table2', 'table1.col1 = table2.col1');
$this->db->where('table1.col1', 2);

$query = $this->db->get();

请注意,此答案绝不是对使用 Code Igniter 的认可;-)

于 2012-08-06T02:07:12.347 回答
3

试试这个 :

$this->db->select('*'); // Select field
$this->db->from('table1'); // from Table1
$this->db->join('table2','table1.col1 = table2.col1','INNER'); // Join table1 with table2 based on the foreign key
$this->db->where('table1.col1',2); // Set Filter
$res = $this->db->get();

希望能帮助到你 :)

于 2012-08-06T02:05:56.230 回答
0
$this->db->select('book_id, book_name, author_name, category_name');
$this->db->from('books');
$this->db->join('category', 'category.category_id = books.category_id');
$this->db->where('category_name', 'Self Development');
$query = $this->db->get();

// Produces SQL:
 select book_id, book_name, author_name, category_name from books 
 join category on category.category_id = books.category_id 
 where category_name = "Self Development"
于 2016-11-11T07:25:53.307 回答