2013-03-03 36 views

回答

2

這應該工作:

select replace(aaa, 'a', 'b'), t.* from table t where id = 3; 
2

的原因是因爲asterisk*替換操作之後來到,嘗試交換它,它會正常工作,

select *, 
     replace(aaa, 'a', 'b') 
from `table` 
where id = 3; 
相關問題