查询获取简单数据库中的属性值
我正在使用简单的数据库。在我的简单数据库中有 "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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 SimpleDB 中使用 SELECT 时,有时必须用引号引起来的属性名称本身。如果名称(属性名称或域名)包含字母、数字、下划线和美元符号以外的任何字符,则必须将其引用。
在 SimpleDB SELECT 中引用名称时,使用反引号字符 (`)(与引用允许单引号或双引号字符的值相反)
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)
SimpleDB SELECT Quoting Rules