Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个项目,我正在创建一个 SQLite 数据库表,它有一定数量的列。我想包含一个条件,如果特定列不为空,则执行某些操作(以填充该值)。我搜索了很多,但没有找到任何东西。请帮忙。
提前致谢。
有一条PRAGMA table_info(table_name)语句将为table_name结果行的每一列返回以下信息(在单独的列中):
PRAGMA table_info(table_name)
table_name
NOT NULL
DEFAULT
第三栏将回答您的问题。