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

2022/7/27 2:22:48

本文主要是介绍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



这篇关于mysql把一个表的字段赋值到另一张表,多表之间常用的操作的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程