从一个数据库和其他数据库中选择相关的数据

发布于 2024-12-10 10:49:41 字数 1120 浏览 0 评论 0原文

//$find = $this->input->post('val');
$find = 'hello';

例如我有两个数据库 data1 & data2data1 如下:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

|煩躁 2024-12-17 10:49:41

你到底想要什么? namenumber 字段位于何处(在哪个表中)?
我想你想要类似的:

(SELECT * FROM data1 WHERE name LIKE "%$find%") UNION (SELECT * FROM data2 WHERE number LIKE "%$find$")

你可以检查 CI 的 Active Record 类

What do you want exactly? Where (in which table) is the name and number fields?
I think you want similar to this:

(SELECT * FROM data1 WHERE name LIKE "%$find%") UNION (SELECT * FROM data2 WHERE number LIKE "%$find$")

And you can check CI's Active Record class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文