gpt4 book ai didi

sqlite - SQLite:条件DDL语句

转载 作者:行者123 更新时间:2023-12-03 15:53:58 25 4
gpt4 key购买 nike

我希望在sqlite3中执行以下类型的代码:

drop table x if (select y from z where col1 = "a");


如果当前在同一数据库中存在某些值,则基本上执行DDL命令。

有任何想法吗?

最佳答案

一个sqlite的shell脚本:

.bail ON
SELECT CASE COUNT(*)
WHEN 0 THEN 1/0 -- will throw
ELSE 1
END
FROM z
WHERE col1 = 'a';
DROP TABLE x;


sqlite the_database < the_script运行

关于sqlite - SQLite:条件DDL语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8154240/

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