1星持、更新替換
將address字段里的 “東” 替換為 “西” 殃饿,如下
update test_tb set address=replace(address,'東','西') where id=2
2犁柜、插入替換
將id=6的name字段值改為wokou(向表中“替換插入”一條數(shù)據(jù)川梅,如果原表中沒有id=6這條數(shù)據(jù)就作為新數(shù)據(jù)插入(相當(dāng)于insert into作用);如果原表中有id=6這條數(shù)據(jù)就做替換(相當(dāng)于update作用)乔遮。對于沒有指定的字段以默認(rèn)值插入)
replace into test_tb VALUES(6,'wokou','新九州島','日本')
3扮超、查詢替換
將address字段里的 “區(qū)” 替換為 “嘔” 顯示
select *,replace(address,'區(qū)','嘔') AS rep from test_tb
4、內(nèi)容追加
//mysql向表中某字段后追加一段字符串
update table_name set field=CONCAT(field,'str');
//mysql 向表中某字段前加字符串
update table_name set field=CONCAT('str',field)