1
9
使用左联接/为空:
Assuming the columns being joined on, this is the fastest/most efficient method on MySQL . 否则,不在/不存在是更好的选择。 使用不存在:
|
2
4
如果不使用子查询(甚至是我喜欢的现有类型),则需要执行左联接并获取未联接的记录,如:
|
3
0
也许是工会的事? select * from test as a left outer join test1 as o on a.id = o.id union all select * from test as a right outer join test1 as o on a.id = o.id where a.id is null;
我假设如果独占加入,您希望实现什么。
|
hello_programmers · Mysql从其他表输出一列 1 年前 |
Community wiki · 这个MySQL语句出了什么问题? 1 年前 |
Community wiki · 优化从同一表中提取的多列的查询 1 年前 |
Popo · Sql查询:返回数据库中不可用的where条件 1 年前 |
Hamdan Nuramdani · 对账单中一周内不同表中的数据求和 1 年前 |
Kugelfisch · 用php为数据库加密数据 1 年前 |