gpt4 book ai didi

sqlite - 如何从 sqlite 中的另一个数据库导入表?

转载 作者:IT王子 更新时间:2023-10-29 06:18:19 26 4
gpt4 key购买 nike

我有名为 database1 的 SQLite 数据库和一个表 t1database2 以及一个表 t2。我想将表 t2database2 导入到 database1。我应该使用什么命令?

最佳答案

sqlite3 command-line tool 打开 database2并使用命令 .schema t2 读取表定义。(或者,使用任何其他允许读取表定义的工具。)

然后打开database1attach使用命令的另一个数据库:

ATTACH 'database2file' AS db2;

然后创建表t2,并复制数据:

INSERT INTO t2 SELECT * FROM db2.t2;

关于sqlite - 如何从 sqlite 中的另一个数据库导入表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13206501/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com