>백엔드 개발 >PHP 튜토리얼 >MySQL怎么样实现多个表的或查询?

MySQL怎么样实现多个表的或查询?

WBOY
WBOY원래의
2016-06-06 20:06:321033검색

MySQL怎么样实现多个表的或查询?
我想要像上图那样在两个表里面查询username,只有其中一个表有这个数据就返回true,但是MySQL判断必须两个表都有才返回true。

MySQL怎么样实现多个表的或查询?

请问有什么办法可以实现这样的查询呢?(两个表中任何一个表有数据则返回true)

回复内容:

MySQL怎么样实现多个表的或查询?
我想要像上图那样在两个表里面查询username,只有其中一个表有这个数据就返回true,但是MySQL判断必须两个表都有才返回true。

MySQL怎么样实现多个表的或查询?

请问有什么办法可以实现这样的查询呢?(两个表中任何一个表有数据则返回true)

select * from user_agent, user_cleck where user_agent.username = 'huibao' or user_clerk.username = 'huibao'这样可以吗?

select * from table1, table2 是多表联合查询,题主的情况只是两个单表查询的结果取合集,应该用 UNION

1、结果取合集

<code>select * from user_agent where username='{$username}' 
union all 
select * from user_clerk where username='{$username}';
</code>

2、结果取合集,并去掉重复项

<code>select * from user_agent where username='{$username}' 
union 
select * from user_clerk where username='{$username}';
</code>

题主的情况,两种都可以。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.