我有一个查询需要检查记录在查询中包含它之前是否仍处于活动状态。现在我的问题是该记录的记录状态在另一个数据库中,我们都知道我们无法连接来自不同数据库的表。
我想要做的是从其他数据库创建一个视图,我只是将该视图加入到我的查询中。问题是如何在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
无论注册与否,都会选择所有学生记录。 表包含当前学年的注册学生,该表来自其他数据库。我想只计算已注册学生的记录。
答案 0 :(得分:2)
我们都知道我们无法连接来自不同数据库的表
不确定是否适用于您的情况,但这里有一些关于跨db查询的帖子:
Querying multiple databases at once
PHP Mysql joins across databases
https://stackoverflow.com/a/5698396/183254
无论如何,您不需要使用联接;只查询另一个数据库以查看该事物是否处于活动状态
$DB2 = $this->load->database('otherdb', TRUE);
$active = $DB2->query('SELECT is_active blah...');
if($active)
{
//do other query
}
这可能在语法上不正确,但应指向正确的方向。与往常一样,user guide。
// 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');