updateフィールドの内容を追加したり、フィールドの一部の文字を置き換えたりします.
1875 ワード
1:
REPLACEを使用して、テーブル内のフィールドの詳細を更新します.
update`テーブル名`setフィールド名=replace(フィールド名,'検索内容','変更内容')whereフィールド名like'%検索内容%';
update shangpin set click_url=replace(click_url,'21508360','1111111111') where click_url like '%21508360%';
2:
mysql concat文字列追加後updateテーブル名setフィールド名=concat(フィールド名、str
mysql concat追加文字列
1.後にupdateテーブル名setフィールド名=concat(フィールド名、string)2を追加する.前にupdateテーブル名setフィールド名=concat(「string」フィールド名)を追加
UPDATE log_201408_35 SET `return_content`=CONCAT (`return_content`,' world') WHERE id=1
微博注目コード
Mysql (substring とconcat の )
customテーブルにtariffurlの がある は、 のようになります.
uploadfiles ariff2007031172720306698.jpg びuploadfiles ariff 200703117227306690.jpg;uploadfiles ariff2007031172720306691.jpg
uploadfiles/tariff/2007 03/172720306698に する.jpg びuploadfiles/tariff/2007 03/172720306690.jpg;uploadfiles/tariff200703/1172720306691.jpg
substring とcanct を み わせて できます. は のとおりです.
1、update custom set tariffurl=concat('uploadfiles/tariff/200703/',substring(tariffurl,24)) where tariffurl like 'uploadfiles ariff200703%'
2、update custom set tariffurl=concat(substring(tariffurl,1,55),'/tariff/200703/',substring(tariffurl,68)) where tariffurl like 'uploadfiles/tariff/200703/%' and tariffurl like'%;uploadfiles %'
substring(filed,m):filedフィールドのm から までの を り る.
substring(filed,m,n):filedフィールドのm からnの さの を り る.
cancat(string 1,sting 2,......):string 1,string 2,...... を します.
REPLACEを使用して、テーブル内のフィールドの詳細を更新します.
update`テーブル名`setフィールド名=replace(フィールド名,'検索内容','変更内容')whereフィールド名like'%検索内容%';
update shangpin set click_url=replace(click_url,'21508360','1111111111') where click_url like '%21508360%';
2:
mysql concat文字列追加後updateテーブル名setフィールド名=concat(フィールド名、str
mysql concat追加文字列
1.後にupdateテーブル名setフィールド名=concat(フィールド名、string)2を追加する.前にupdateテーブル名setフィールド名=concat(「string」フィールド名)を追加
UPDATE log_201408_35 SET `return_content`=CONCAT (`return_content`,' world') WHERE id=1
微博注目コード
Mysql (substring とconcat の )
customテーブルにtariffurlの がある は、 のようになります.
uploadfiles ariff2007031172720306698.jpg びuploadfiles ariff 200703117227306690.jpg;uploadfiles ariff2007031172720306691.jpg
uploadfiles/tariff/2007 03/172720306698に する.jpg びuploadfiles/tariff/2007 03/172720306690.jpg;uploadfiles/tariff200703/1172720306691.jpg
substring とcanct を み わせて できます. は のとおりです.
1、update custom set tariffurl=concat('uploadfiles/tariff/200703/',substring(tariffurl,24)) where tariffurl like 'uploadfiles ariff200703%'
2、update custom set tariffurl=concat(substring(tariffurl,1,55),'/tariff/200703/',substring(tariffurl,68)) where tariffurl like 'uploadfiles/tariff/200703/%' and tariffurl like'%;uploadfiles %'
substring(filed,m):filedフィールドのm から までの を り る.
substring(filed,m,n):filedフィールドのm からnの さの を り る.
cancat(string 1,sting 2,......):string 1,string 2,...... を します.