我如何在亚马逊 simpledb 中实现正则表达式

发布于 2024-11-16 15:51:03 字数 338 浏览 1 评论 0原文

我在亚马逊 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 技术交流群。

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

发布评论

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

评论(1

眼角的笑意。 2024-11-23 15:51:03

您可以运行此选择查询来获得结果 -

**select * from domain_name where source = 'fa.php' and code is not null and success = 'true'**

您无法使用 Amazon 简单数据库查询添加/更新/删除数据。

You can run this select query to achieve you result -

**select * from domain_name where source = 'fa.php' and code is not null and success = 'true'**

You can not add/update/delete data using Amazon simple DB query.

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