仅当 SQLite 表尚不存在时才创建该表

2022-08-30 18:53:30

我需要我的PHP应用程序能够创建SQLite表,但前提是它尚不存在。我该怎么做?


答案 1

您可以使用:

CREATE TABLE IF NOT EXISTS <name> (
  /* definition */
)

这是由 SQLite 支持的 (http://www.sqlite.org/syntaxdiagrams.html#create-table-stmt)


答案 2
CREATE TABLE IF NOT EXISTS ...

推荐