分类

链接

2022 年 3 月
 123456
78910111213
14151617181920
21222324252627
28293031  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > MySQL > 正文
共享办公室出租
mysql大数据表加字段改名
MySQL 暂无评论 阅读(138)

select count(0) from product_detection

select count(0) from product_detection_latest

 

create table tmp like product_detection;

insert into product_detection_latest
select a.id, a.product_id, a.title, a.image_url, a.item_url, a.price, a.rating, a.sub_category,
a.reviews_count, a.review_change, a.rank_number, a.country, a.brand, a.source, a.tag, a.category,
a.create_time, a.reviews_count_latest, a.rating_latest, a.first_review_day, a.latest_review_day,
a.period, a.base, a.review_score,a.nn_socre,a.ins_sim_score,a.ins_engagemt_score,a.unit
from product_detection a join product_lastest b on a.product_id=b.product_id and a.id=b.id  ;

 

rename table goods to goods_bak;
rename table tmp to goods;

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:mysql大数据表加字段改名 | Bruce's Blog

发表评论

留言无头像?