如何在mysql中将值从一列赋值到另一列?

时间:2017-10-07 20:11:41

标签: mysql

我有两个表A和B我正在使用左连接和查询返回两列phone,cid喜欢这个

select B.phone
     , A.cid 
  from B 
  left 
  join A 
    on A.id_cc_card = cc_card.id 
 where A.cid is null


phone     cid 
5656565   null
4546565   null

现在我的问题是我想使用mysql这样的

分配手机的价值
   phone    cid
  5656565   5656565 
  4546565   4546565   

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

试试这个。你将得到你在问题中提到的所需结果。

select B.phone,B.phone as cid from B left join A on 
A.id_cc_card=cc_card.id where A.cid is null