标签: mysql shell
我想在数据库中运行查询,然后将结果插入到另一个中。 我想制作一个剧本,但我不知道如何点缀它。
示例:
Database 1 : Select name , count(*) as NBName from db1.table1 Database 2 : Insert into table2 values ("test1", 10), ("test2",20) where "test1", 10 ... are the result of the first query.
谢谢:)