【Sqlite】CREATE TABLE 判断存在则不执行
前言
SQLite在执行CREATE TABLE
语句的时候,也是可以判断表是否存在的,如果不存在再创建
脚本
create table if not exists sys_update_version
(
id integer
constraint sys_update_version_pk
primary key autoincrement,
version VARCHAR default '' not null,
is_first int default 1
);
参考
本文来自:【Sqlite】CREATE TABLE 判断存在则不执行-小码农,转载请保留本条链接,感谢!
温馨提示:
本文最后更新于 2022年10月19日,已超过 764 天没有更新。若文章内的图片失效(无法正常加载),请留言反馈或直接联系我。
正文到此结束
- 本文标签: sqlite createtable
- 本文链接: https://djc8.cn/archives/sqlite-if-create-table-judges-that-it-exists-it-will-not-execute.html
- 版权声明: 本文由小码农原创发布,转载请遵循《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权