mysql更新字段中部分内容的sql语句写法
时间:2015-01-02 15:32 来源:linux.it.net.cn 作者:IT
语法:
-
update table_name t set t.row_name=replace(t.row_name,'old_value','new_value')
说明:
table_name 表名;
row_name 被更新的列名;
old_value 要被更新的值;
new_value 更新的新值
举个例子,将content里的www,替换为'http://www.baidu.com',sql语句如下:
代码示例:
-
update test_tab t set t.content=replace(t.content,'www','http://www.baidu.com') where t.nb_content_id=123
附,mysql中修改字段长度的sql语句。
语法:
alter table 表名 modify column 字段名 类型;
例子:
修改数据库中user表中name字段varchar(30),将长度修改为50,sql语句如下:
代码示例:
-
alter table user modify column name varchar(50);
(责任编辑:IT)
语法:
说明: table_name 表名; row_name 被更新的列名; old_value 要被更新的值; new_value 更新的新值 举个例子,将content里的www,替换为'http://www.baidu.com',sql语句如下: 代码示例:
附,mysql中修改字段长度的sql语句。 语法:
alter table 表名 modify column 字段名 类型; 代码示例:
(责任编辑:IT) |