【SQL实践】其他常用SQL汇总

【SQL实践】其他常用SQL汇总

1、联表更新

update students stu
inner join course on course.STUDENT_ID=stu.id
set stu.name=course.ID
原文地址:https://www.cnblogs.com/yank/p/7240204.html