如何在 SQLite 终端中选择奇怪的列名?

发布于 2024-10-23 19:16:55 字数 379 浏览 1 评论 0原文

sqlite> select * from questions;
data_id     data_text   data_image  parent_id   data_order  data_id:1   data_text:1
----------  ----------  ----------  ----------  ----------  ----------  -----------
23          google                   5                       5           favorites        

你好,我正在测试查询。但我只想选择“data_text:1”列。

我不知道如何选择列。

sqlite> select * from questions;
data_id     data_text   data_image  parent_id   data_order  data_id:1   data_text:1
----------  ----------  ----------  ----------  ----------  ----------  -----------
23          google                   5                       5           favorites        

Hi, I'm testing query. But I want to select just the 'data_text:1' column.

I don't know how to select column.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

番薯 2024-10-30 19:16:55

用双引号将列名称引起来:

select "data_text:1" from questions;

SQLite 遵循 SQL-92 语法,其中双引号用于引用标识符(列/表名称)。单引号用于引用文字值,例如字符串 'I am a string!'X'ABCD'(blob 数据)。

快乐编码。


我建议简单的列名,不需要在 SQL 中加引号,并且不与保留字冲突,因为它使生活更轻松。

Surround the name of the column with double-quotes:

select "data_text:1" from questions;

SQLite follows SQL-92 syntax where double quotes are used to quote identifiers (column/table names). Single quotes are used to quote literal values like strings 'I am a string!' or X'ABCD' (blob data).

Happy coding.


I recommend simple column names that do not require to be quoted in SQL and do not clash with reserved words as it make life easier.

路还长,别太狂 2024-10-30 19:16:55

用 `` 将列名称括起来,

`data_text:1`   

称为“反引号”,您通常会在键盘上的 TAB 上方和 1 左侧找到它。
或者,您可以通过组合获得它:(alt gr + 7)

Surround the name of the column with ``

`data_text:1`   

Known as a 'backtick' you usually find it above TAB and left of 1 on keyboards.
Alternatively you can get it with the combination : (alt gr + 7)

探春 2024-10-30 19:16:55

用双引号 @pst 括住列名称

select "data_text:1" from questions;

有助于在注释中对其进行解释。我在这里转述他的话:

SQLite 遵循 SQL-92,因此双引号(这是标识符引号)将起作用

Surround the name of the column with double-quotes

select "data_text:1" from questions;

@pst helps to explain it in a comment. I'm paraphrasing him here:

SQLite follows SQL-92 so a double quote (which is an identifier quote) will work

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