从一个数据库和其他数据库中选择相关的数据
//$find = $this->input->post('val');
$find = 'hello';
例如我有两个数据库 data1
& data2
和 data1
如下:
ROW1: 111 | 11 | 11 1
行2: 222 | 22 | 22 2
第三行: 333 | 33 | 3
ROW4: 444 | 44 | 44 4
在数据库中 data2
如下:
ROW1: hi | 234 | 234 978
行2: 4312 |你好 | 122
它们在
中显示(select * from ...
):
ROW1: 111 | 222 | 222 333 | 333 444 | 444你好| 4312
第 2 行: 11 | 22 | 22 33 | 44 | 44 234 | 234 hello // 我只想显示此 ROW2,因为此 ROW 具有值 hello
第三行: 1 | 2 | 3 | 4 | 978 | 978 122
我的尝试是这样的,但它不正确:
//$find = $this->input->post('val');
$find = 'hello';
$this->db->query("SELECT * FROM array('data1','data2') WHERE name LIKE '%$find%' OR number LIKE '%$find%'")
如何在两个数据库中使用 php 来完成这项工作? (如果不是用 codeigniter 完成的,那么没有 codeigniter 又如何呢?)
//$find = $this->input->post('val');
$find = 'hello';
For example i have two database data1
& data2
and data1
is as:
ROW1: 111 | 11 | 1
ROW2: 222 | 22 | 2
ROW3: 333 | 33 | 3
ROW4: 444 | 44 | 4
And in database data2
is as:
ROW1: hi | 234 | 978
ROW2: 4312 | hello | 122
And they show(select * from ...
) in a <table></table>
as:
ROW1: 111 | 222 | 333 | 444 | hi | 4312
ROW2: 11 | 22 | 33 | 44 | 234 | hello // i want show only this ROW2 because this ROW have value hello
ROW3: 1 | 2 | 3 | 4 | 978 | 122
My try is this that it not right:
//$find = $this->input->post('val');
$find = 'hello';
$this->db->query("SELECT * FROM array('data1','data2') WHERE name LIKE '%$find%' OR number LIKE '%$find%'")
How can done this work with php in two database? (if it don't done with codeigniter how is it without codeigniter?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你到底想要什么?
name
和number
字段位于何处(在哪个表中)?我想你想要类似的:
你可以检查 CI 的 Active Record 类。
What do you want exactly? Where (in which table) is the
name
andnumber
fields?I think you want similar to this:
And you can check CI's Active Record class.