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 数据库环境的新手。我创建了一个包含少量字段的表,并将 2 个字段设为唯一。因此,当他/她将重复数据插入表中时,我必须向用户显示警报。谁能告诉我“如何在将现有数据插入到 sqlite 数据库中的表之前检查它”
您必须查询用户输入的输入数据并检查它是否存在,
就像触发查询一样select count() from category where categoryName='usertext'
select count() from category where categoryName='usertext'
显然你知道在哪里检查表名(category在我的例子中,即在上面的查询中)和列名(categoryName)的数据。
category
categoryName
如果计数大于零,数据存在,你可以提醒用户
否则不存在。