I'm trying to enumerate keys in Amazon SimpleDB. In SQL, it would be something like:
select unique itemName() from domain;
I've searched around but didn't find any way to do this. Any help?
|
|
I'm trying to enumerate keys in Amazon SimpleDB. In SQL, it would be something like:
I've searched around but didn't find any way to do this. Any help?
|
||
|
|
|
|
By definition, items in a domain are unique, so you were almost there:
|
||
|
|
|
AFAIK SimpleDB doesn't do
should work, and you can remove duplicates (if any) very easily, since you're getting the names in sorted order (e.g. |
||
|
|