如何在查询中连接两个表,其中要连接的表的名称是第一个表中的值

我有两个查询将 4 个表连接在一起。第四个表是从第一个表读取的值。到目前为止,我一直将该值读入一个变量,然后在第二个查询中使用该变量,但我想知道是否可以将其合并到一个查询中。


这是我的查询($node_type_name 是从调用函数传入的):


$this->read_db->select('id, head_node_id, data_table_name');

    $this->read_db->from('node_type');

    $this->read_db->where('name', $node_type_name);

    $Q = $this->read_db->get();

    $table_name = $Q->row_array()['data_table_name'];

    $field_name = $table_name . '.node_id';

    $this->read_db->select('node.id, node.name, node.is_head_node, node.node_type_id, node_link.parent_node_id, ' . $table_name . '.id, ' . $table_name . '.node_id');

    $this->read_db->from('node');

    $this->read_db->join('node_link', 'node_link.child_node_id = node.id');

    $this->read_db->join($table_name, $field_name . ' = node.id');

    $M = $this->read_db->get();

该函数是一个通用函数,因此某人可以将 locations 发送到 $node_type_name 或 organizations,并且查询将加入与这些名称关联的表。目前只有两种“类型”,但我们将来可能会添加更多,因此该功能需要是通用的。


qq_遁去的一_1
浏览 84回答 1
1回答

慕田峪7331174

最后,我创建了一个单独的函数,用于获取对象中的第一个查询,然后将其传递到第二个函数中。
打开App,查看更多内容
随时随地看视频慕课网APP