数据库字段关联更新

MS SQL Server 子查询更新:

update log set uin= b.uin from log a,logs b where a.accountuin = b.accountuin

mysql 更新:

update t_stat_month_user a INNER JOIN t_dept b on a.op_dept=b.op_id set a.dept_short_name=b.dept_short_name;

posted @ 2014-08-15 21:45  李小加  阅读(258)  评论(0编辑  收藏  举报