我如何在亚马逊 simpledb 中实现正则表达式
我在亚马逊 simpledb 中以这种格式存储了数据,
source code success
fa.php 987439aa true
ga.php aa84892 false
我如何在 simpledb 中编写这种类型的查询
select * from domain_name where source = 'fa.php'
and code='ANy thing' and success = 'true'
如何在上述查询中编写代码部分
I have data stored in this format in amazon simpledb
source code success
fa.php 987439aa true
ga.php aa84892 false
how do i wrtie this type of query in simpledb
select * from domain_name where source = 'fa.php'
and code='ANy thing' and success = 'true'
How do i write code part in the above query
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以运行此选择查询来获得结果 -
您无法使用 Amazon 简单数据库查询添加/更新/删除数据。
You can run this select query to achieve you result -
You can not add/update/delete data using Amazon simple DB query.