Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个表中有三列:登录名、姓名和姓氏。
我想用 Name 和 Familyname 的内容替换 Login 列中的所有内容。
例子:
我希望登录为“Jan Vandevoorde”。
有没有办法做到这一点?
UPDATE your_table SET login = CONCAT_WS(' ', name, familyname);