update car c,car_series cs,car_brand cb,brand b set c.brand_name=b.b_name where c.cs_id=cs.cs_id and cs.cb_id = cb.cb_id and cb.b_id = b.b_id;
详细解决方案
sql 话语,多表更新语句
热度:59 发布时间:2016-05-05 13:28:09.0
update car c,car_series cs,car_brand cb,brand b set c.brand_name=b.b_name where c.cs_id=cs.cs_id and cs.cb_id = cb.cb_id and cb.b_id = b.b_id;
相关解决方案