我有一张桌子,我已经完成了选择替换,但值不会粘在桌子上。如何更新它,以便select语句的值反映在表中。
update MobileDb set Mobile = select replace(Mobile, " ", "") from MobileDB;
本质上MobileDB是表,Mobile是字段名。该表只有一列名为Mobile。
答案 0 :(得分:0)
使用此
UPDATE MobileDb
SET Mobile = REPLACE(Mobile, " ", "");
答案 1 :(得分:-1)
使用单引号:
select replace(Mobile, ' ', '') from MobileDB;