Sqlite 不同的列名,但具有相同的值

发布于 2024-11-05 22:18:46 字数 652 浏览 0 评论 0原文

这是我当前的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゞ花落谁相伴 2024-11-12 22:18:46

我会使用别名吗?

这是可能的,但这取决于您的具体要求。请参阅我对此问题的回答,看看这是否适用于您。 Android:列“_id”不存在问题

Would I use an alias?

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文