MySQL左联多表查询where条件写法示例

前端技术 2023/09/05 MYSQL

复制代码 代码如下:

select * from _test a left join _test b on a.id=b.id where a.level=\'20\' and a.month=\'04\' and b.level=\'20\' and b.month=\'03\';

select a.*,b.* from (select * from _test where level=\'20\' and month=\'04\') as a left join (select * from _test where level=\'20\' and month=\'03\') as b on a.id=b.id;

本文地址:https://www.stayed.cn/item/12483

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。