数据库
首页 > 数据库> > mysql把一个表的字段赋值到另一张表,多表之间常用的操作

mysql把一个表的字段赋值到另一张表,多表之间常用的操作

作者:互联网

根据主键,把一个表的字段赋值到另一张表
需求:根据userId 把user表的 username 和phone字段填充到score表中
update score,user set score.username = user.username , score.phone = user.phone where score.userId = user.userId
或者
update score join user on score.userId=user.userId set score.username = user.username , score.phone = user.phone

标签:username,set,多表,userId,phone,score,user,mysql,赋值
来源: https://www.cnblogs.com/lc-totoro/p/16521496.html