仅在尚不存在的SQLite中创建表 [英] Create table in SQLite only if it doesn't exist already

查看:110
本文介绍了仅在尚不存在的SQLite中创建表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

仅在尚不存在的情况下,我想在SQLite数据库中创建表。有什么办法吗?我不想删除该表(如果存在),仅在不存在时创建它。

I want to create a table in a SQLite database only if doesn't exist already. Is there any way to do this? I don't want to drop the table if it exists, only create it if it doesn't.

推荐答案

http://www.sqlite.org/lang_createtable.html

CREATE TABLE IF NOT EXISTS some_table (id INTEGER PRIMARY KEY AUTOINCREMENT, ...);

这篇关于仅在尚不存在的SQLite中创建表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆