php 如何同时调用Mysql 数据库中俩个表格数据
数据库表格1IDID2other1other2other3199aaaabbbbbccccc299sddsadfdfdsffdsfsdf399332dwdfdsfsdfd...
数据库表格1
ID ID2 other1 other2 other3
1 99 aaaa bbbbb ccccc
2 99 sddsa dfdfdsf fdsf sdf
3 99 332dw dfdsf sd fdfdsf
4 88 dsfsdf dfdsfdsf fdfdsf
数据库表格2
ID ID2 other4 other5 other6
1 99 21213 213213 123213
2 88 123213 234 f54353
PHP怎么写能在前台一个页面同时读取数据表格中ID2相同的数据,并在一个页面显示如下
例如是99这个ID2数据
aaaa bbbbb ccccc 21213 213213 123213
sddsa dfdfdsf fdsf sdf 21213 213213 123213
332dw dfdsf sd fdfdsf 21213 213213 123213
如果是查询 88这个ID2数据
就只显示
dsfsdf dfdsfdsf fdfdsf 123213 234 f54353
加油加油 展开
ID ID2 other1 other2 other3
1 99 aaaa bbbbb ccccc
2 99 sddsa dfdfdsf fdsf sdf
3 99 332dw dfdsf sd fdfdsf
4 88 dsfsdf dfdsfdsf fdfdsf
数据库表格2
ID ID2 other4 other5 other6
1 99 21213 213213 123213
2 88 123213 234 f54353
PHP怎么写能在前台一个页面同时读取数据表格中ID2相同的数据,并在一个页面显示如下
例如是99这个ID2数据
aaaa bbbbb ccccc 21213 213213 123213
sddsa dfdfdsf fdsf sdf 21213 213213 123213
332dw dfdsf sd fdfdsf 21213 213213 123213
如果是查询 88这个ID2数据
就只显示
dsfsdf dfdsfdsf fdfdsf 123213 234 f54353
加油加油 展开
3个回答
展开全部
select * from table where 1.ID2==88 and 2.ID2==88
追问
有比较合适的PHP代码么?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用链表查询就可以,找一个相同的值
select a.*,b.* from table1 a inner join table2 b on a.ID2=b.ID2
select a.*,b.* from table1 a inner join table2 b on a.ID2=b.ID2
追问
这个倒是能掉
但是直接所有的都出来了。这样不好
我想要的效果是 我搜索ID2 的数值 搜索那个 那个出来
ID2 在俩个表格中 相同的数据 同时调用出来
例如是99这个ID2数据
aaaa bbbbb ccccc 21213 213213 123213
sddsa dfdfdsf fdsf sdf 21213 213213 123213
332dw dfdsf sd fdfdsf 21213 213213 123213
追答
那简单,你传个参数
select a.*,b.* from table1 a inner join table2 b on a.ID2=b.ID2 where ID2=(参数);
就这样啊,你在PHP里面,写的方法,连接成SQL语句啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询