2

我有一个查询需要在将记录包含在查询中之前检查它是否仍然处于活动状态。现在我的问题是该记录的记录状态在另一个数据库中,我们都知道我们不能连接来自不同数据库的表。

我想做的是从另一个数据库创建一个视图,然后将该视图加入到我的查询中。问题是如何在 CodeIgniter 中创建视图并从中选择数据?

提前致谢。

顺便说一句,我不是设计数据库的人。-公司定义-

这是我的查询示例,它不是确切的查询,因为它包含很多表。我希望我能给你一些我正在尝试做的事情的提示。

SELECT count(IDNO), course, sum(student_balance)
FROM student_balances
WHERE school_term = '2013' AND student_balance > 0
GROUP BY course
ORDER BY course

无论是否注册,都会选择那里的所有学生记录。有一个包含当前学年注册学生,该表来自另一个数据库。我只想计算已注册学生的记录。

4

1 回答 1

2

我们都知道我们不能连接来自不同数据库的表

不确定是否适用于您的情况,但这里有一些关于跨数据库查询的帖子:

一次查询多个数据库
PHP Mysql 跨数据库连接
https://stackoverflow.com/a/5698396/183254

无论如何,您不需要使用联接;只需查询其他数据库以查看该事物是否处于活动状态

$DB2 = $this->load->database('otherdb', TRUE);
$active = $DB2->query('SELECT is_active blah...');
if($active)
{
    //do other query
}

更新

这可能在语法上不正确,但应该为您指明正确的方向。一如既往,用户指南

// load other db
$db2 = $this->load->db('otherdb',TRUE);

// get enrolled student id's from other db
$active_students = $db2->query('SELECT id FROM students WHERE enrolled = 1')->result();

// query this db for what you want
$this->db->select('count(IDNO), course, sum(student_balance)');
$this->db->where('school_term',2013);
$this->db->where('student_balance >',0);

// where_in will limit the query to the id's in $active_students
$this->db->where_in('id', $active_students);

// finally, execute the query on the student_balances table
$balances = $this->db->get('student_balances');
于 2013-05-03T14:16:39.967 回答