MySQL 一个left join 查询疑问
ringa_lee
ringa_lee 2017-04-17 13:53:44
0
2
599

c_mart_order_info 表执行

mysql> SELECT order_id,order_sn FROM  `c_mart_order_info` WHERE  `order_sn` =  '16030515100000196809';
+----------+----------------------+
| order_id | order_sn             |
+----------+----------------------+
|       27 | 16030515100000196809 |
+----------+----------------------+
1 row in set (0.00 sec)

c_order_pay 执行

mysql> select order_sn from c_order_pay where order_sn=16030515100000196809;
+----------------------+
| order_sn             |
+----------------------+
| 16030515100000196809 |
+----------------------+
1 row in set (0.00 sec)

两个表 left join 后

mysql> select a.order_sn as a_sn,c.order_sn as c_sn from c_mart_order_info as a left join c_order_pay as c on a.order_sn=c.order_sn where a.order_id=27;
+----------------------+------+
| a_sn                 | c_sn |
+----------------------+------+
| 16030515100000196809 | NULL |
+----------------------+------+
1 row in set (0.00 sec)

两个表都有相同的 order_sn 用left join 查询,为什么只得到一个表的信息,哪里出错了?

------更---------
感谢 woderwang 提醒,我的mysql 版本是5.1,col类型不一样造成,但是某些更新版本的mysql,却没有这个问题,

ringa_lee
ringa_lee

ringa_lee

reply all(2)
刘奇

The column type is different. MySQL should have forced conversion. Use int to process it and then try joining

大家讲道理

Remove where a.order_id=27.
You will find out.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!