现在我有两张表分别是s_person,s_user
s_person
s_user
我现在想把s_user表中的account批量修改成s_person的account
我们可以发现s_user表中有个跟s_person表关联的字段 那就是person_id 这也是我们要update的条件
找到这个关系以后我们就不难写sql了
update s_user set account=p.account from s_person p where p.id=s_user.person_id;
结果为:
sqlserver as 语法举例
1、使用表名称别名
有两个表分别是:”persons” 和 “product_orders”。分别为它们指定别名 “p” 和 “po”。列出 “john adams” 的所有定单。
select po.orderid, p.lastname, p.firstname from persons as p, product_orders as po where p.lastname='adams' and p.firstname='john';
2、使用列名称别名
查询 persons 表中的 lastname 列 (为其定义别名 ‘姓氏’)和 firstname 列(为其定义别名 ‘名字’),输出所有结果值。
select lastname as 姓氏, firstname as 名字 from persons
3、同时使用 表名称 和 列名称
为 city 表定义别名 ‘a’,并利用该表别名查询表中的 id 列(为id列定义别名 b)的所有信息。
select a.id as b from city as a;
这篇文章就介绍到这了,希望能帮助到你。