Sqlite 不同的列名,但具有相同的值
这是我当前的 SQLite 表:
CREATE TABLE formula (_id INTEGER PRIMARY KEY AUTOINCREMENT,suggest_text_1 TEXT,formula TEXT,category TEXT);
我想在 Android 应用程序中集成搜索建议,但我需要一个 SUGGEST_COLUMN_INTENT_DATA_ID
我希望我的 _id
来代表它。但我还需要内容提供商的 _id
。那么有没有办法让我拥有 SUGGEST_COLUMN_INTENT_DATA_ID
并在其中存储 _id
当前和未来的值?我会使用别名吗?
Here is my current SQLite table:
CREATE TABLE formula (_id INTEGER PRIMARY KEY AUTOINCREMENT,suggest_text_1 TEXT,formula TEXT,category TEXT);
I want to integrate search suggestions in an Android app, but I need a SUGGEST_COLUMN_INTENT_DATA_ID
and I want my _id
to represent it. But I also need a _id
for the content provider. So is there a way where I could have SUGGEST_COLUMN_INTENT_DATA_ID
and store the current and future values of _id
in it? Would I use an alias?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的,但这取决于您的具体要求。请参阅我对此问题的回答,看看这是否适用于您。 Android:列“_id”不存在问题
This is possible but it depends on your exact requirements. See my answer to this question to see if this applies to you. Android: column '_id' does not exist problem