遇到问题
想批量把文章里比如中间的内容删除掉,应该怎么写SQL语句呢?
测试表:
info表:
id| title | content 1 | yyy | 3asd2asdd1asd
2 | ooo | 3asd2asdd1asd
解决sql语句
UPDATE sys_users
SET first_name = REPLACE (
first_name,
substring(
first_name,
locate('', first_name),
locate('', first_name) - locate('', first_name)+7
),
''
);
用到的函数:
locate:
LOCATE(substr,str) POSITION(substr IN str) 返回子串 substr 在字符串 str 中第一次出现的位置。如果子串 substr 在 str 中不存在,返回值为 0:
substring
SUBSTR(str,pos,len): 由中的第位置开始,选出接下去的个字元。
replace
replace(str1, str2, str3): 在字串 str1 中,當 str2 出現時,將其以 str3 替代。
测试函数sql:
SELECT
substring(
'3asd2asdd1asd',
locate(
'',
'3asd2asdd1asd'
),
locate(
'',
'3asd2asdd1asd'
) - locate(
'',
'3asd2asdd1asd'
) + 7
)