MySQL将一张表的某些列数据,复制到另外一张表 INSERT INTO t_topic_content(content,topicId) SELECT content,id FROM t_topic; 注意:给某一列数据赋值,自增长,那么就不应该插入数据了 MySQL将一张表的某些列数据,复制到另外一张表,并且修改某些内容.方法同上, 只是查询的时候使用REPLACE(str,from_str,to_str) 函数 INSERT INTO t_topic_content(content,t…
加班一时爽,一直加班~一直爽~ 欢迎收看http://www.996.icu/ 今天弄了下MySQL中两表合并的并且要处理一列数据,这列数据原来都是小写字母,处理时将这列数据改成驼峰命名的~~ 基本操作:(比如处理列2) insert into (目标表名) 指定列1,指定列2,指定列3,指定列4..select 指定列1,(case when 指定列2 = 'whdisshuaibi' then 'whdIsShaiBi' ),指定列3,指定列4 from 数据来源表 如果要处理一列的多个值…
有时间我们需要对一张表进行批量数据的更新.首先我们想的是update 语句. 比如对一张订单表order_info 多条数据更新, update order_inifo set order_code =case order_id when 1 then 'abc' when 2 then 'bcd' when 3 then 'cde' ........ end, order_title=case order_id when 1 then '标题1' when 2…