2011-06-21 90 views
0

我以這種格式存儲在亞馬遜的SimpleDB數據如何實現在亞馬遜SimpleDB的正則表達式

source  code   success 
fa.php 987439aa   true 
ga.php aa84892   false 

我如何wrtie這種類型的查詢在SimpleDB中

select * from domain_name where source = 'fa.php' 
and code='ANy thing' and success = 'true' 

我怎樣寫代碼部分在上面的查詢中

回答

1

你可以運行這個select查詢來實現你的結果 -

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

您無法使用Amazon簡單數據庫查詢添加/更新/刪除數據。

+0

注意:「is not null」在SimpleDB中具有可怕的性能。適用於小型域名和/或不常見的查詢,但使用過多會導致昂貴/痛苦... – Scrappydog