查询获取简单数据库中的属性值

发布于 2024-09-15 21:53:43 字数 196 浏览 3 评论 0原文

我正在使用简单的数据库。在我的简单数据库中有 "device.OS" 属性。我想要“device.OS”具有相同的属性值。请帮助解决这个问题。

笔记: 我可以尝试正常的属性值,我可以获取该值。 但如果属性名称中存在 "." ,则无法获取值。 它显示“语法错误”

谢谢, 森蒂尔

i am using simple db. in my simple db have "device.OS" attribute. i want that same attibute values for "device.OS". please help for this problem.

NOte:
i can try normal attribute value i can possible to get the value.
but if "." is there in attribute name not possible to get the values.
it shows "syntax error"

Thanks,
senthil

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

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

发布评论

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

评论(1

奶气 2024-09-22 21:53:43

在 SimpleDB 中使用 SELECT 时,有时必须用引号引起来的属性名称本身。如果名称(属性名称或域名)包含字母、数字、下划线和美元符号以外的任何字符,则必须将其引用。

在 SimpleDB SELECT 中引用名称时,使用反引号字符 (`)(与引用允许单引号或双引号字符的相反)

SELECT * FROM Inventory WHERE `device.OS` = 'Linux'

SimpleDB SELECT 引用规则

When using SELECT in SimpleDB there are times when the attribute name itself must be quoted. If the name (attribute name or domain name) contains any characters other than letters, numbers, underscore and dollar-sign then you must quote it.

When quoting names in a SimpleDB SELECT, the back-tic character (`) is used (as opposed to quoting values which allows single quote or double quote character)

SELECT * FROM Inventory WHERE `device.OS` = 'Linux'

SimpleDB SELECT Quoting Rules

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