一个表数据更新到另外一个表

从一个表数据某列需要更新到另外一个表,

可以使用多种方式实现:

1、使用子查询方式:

update A m set m.job_type = (select distinct job_type from B mp where mp.mobile= m.mobile);

缺点:数据量大的时候,非常慢;

 

2、多表合并方式:

update A m,B mp set m.job_type = mp.job_type where mp.mobile= m.mobile;

使用第二种方式比第一种方式要快许多,

当然如果数据量很多的话,还需要创建索引,利用索引查询这样会更快,

具体可以参考之前的文章数据库索引创建,

有索引和无索引的对比:https://blog.csdn.net/vtopqx/article/details/83819526

 

 

你可能感兴趣的:(数据库相关)