问题与mysql左连接

时间:2014-06-16 13:34:04

标签: mysql sql left-join

这是我上一个问题的延续。我的第一个问题已经解决并获得了第二个问题。

我有2张桌子

table_one(toneid是主键自动增量)

  toneid   id       email
  1        634      45
  2        643      23
  3        648      55

table_two(tid是主键自动增量)

tid
633
634
643
648

我想要的结果应该是

tid      email
633      null
634      45
643      23
648      55

我的查询是

select table_two.tid, 
       table_one.id, 
       table_one.email 
from  table_two 
       left join table_one on table_one.id = table_two.tid

但它正在回归

tid      email    
634      45
643      23
648      55

0 个答案:

没有答案