当前位置:Gxlcms > 数据库问题 > sqlite3如何判断一个表是否已经存在于数据库中 C++

sqlite3如何判断一个表是否已经存在于数据库中 C++

时间:2021-07-01 10:21:17 帮助过:21人阅读

SELECT count(*) AS cnt FROM sqlite_master WHERE type=‘table‘ AND name=‘table_name‘;
cnt will return 0, if the table doesn‘t exist, 1 if it does.

或者,

SELECT name FROM sqlite_master WHERE type=‘table‘ AND name=‘{table_name}‘;
This will return empty, if the table doesn‘t exist, table_name if it does.

sqlite3如何判断一个表是否已经存在于数据库中c++

sqlite3如何判断一个表是否已经存在于数据库中 C++

标签:sele   turn   type   存在   https   sqlite3   this   select   article   

人气教程排行