mysql从一个数据库向另一个数据库插数据
2022/1/19 19:28:35
本文主要是介绍mysql从一个数据库向另一个数据库插数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
var mysqlr = require('mysql'); var readConnection = mysqlr.createConnection({//创建第一个连接 host: '112.74.82.181', user: 'root', password: 'root.', database: 'ce', dateStrings: true, charset: 'utf8mb4', pagesize: 30, connectionLimit: 10, reuseDB: true }); readConnection.connect(); var mysqlw = require('mysql'); var writeConnection = mysqlw.createConnection({//创建第二个连接 host: '112.73.65.191', user: 'root', password: 'root', database: 'ce2', dateStrings: true, charset: 'utf8mb4', pagesize: 30, connectionLimit: 10, reuseDB: true }); writeConnection.connect(); //查 var oldUserLoginInfo = `select * from table_a`; //增 var writeOldUserInfo = "INSERT INTO table_a (p_name,price,imgs,p_asin,p_name_en) VALUES (?,?,?,?,?)"; //执行查 readConnection.query(oldUserLoginInfo,function(err,rows,fields){ if (err) throw err; for(var item of rows){//处理查结果 var addItem = [item.goods_name,item.goods_price,(!item.image) ? '' : `https://aa/piao/public/upload/${item.image}`,item.number,item.goods_name]; //执行增 writeConnection.query(writeOldUserInfo,addItem,function(err,result){ if(err) console.log(err); console.log('插入数据======================>'); }); } writeConnection.end();//关闭连接2 readConnection.end();//关闭连接1 });
这篇关于mysql从一个数据库向另一个数据库插数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程
- 2024-11-01部署MySQL集群学习:新手入门教程
- 2024-11-01部署MySQL集群入门:新手必读指南
- 2024-10-23BinLog入门:新手必读的MySQL二进制日志指南
- 2024-10-23Binlog入门:MySQL数据库的日志管理指南