增加表的字段alter table 表名 add 字段名 列属性
alter table xxx1 add age int(11)
修改表的字段(重命名、修改约束)
alter table xxx1 modify age varchar(11) -- 修改约束alter table xxx1 change age age1 int(11) -- 字段重命名
删除表的字段
alter table xxx1 drop age11.SQL字段名称替换,可以用AS。\x0d\x0a如:select ID,NAME as 姓名 from table\x0d\x0a2.替换某字段某些行的值可以用update。\x0d\x0a如:update table set Name='zhang san' where name='条件表达式'\x0d\x0a3.列值替换还有replace函数。\x0d\x0a \x0d\x0a答案:update 表名 set 列1='yr' where 列1='hr' \x0d\x0arepalce(要置换的字段,需要替代的字符,替换后的字符)\x0d\x0aupdate 表名 set 列1=replace(列1,'hr','yr')updatetablename
set
AAAAAA=REGEXP_REPLACE(AAAAAA,'F\.G',FBCG) 应该类似这样,使用regexp_replace函数,你可以搜索下这个函数!重点说明:这个正则SQL我没测试,你自己测试~
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)