vote up 1 vote down star

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?

flag

2 Answers

vote up 4 vote down check

By definition, items in a domain are unique, so you were almost there:

select itemName() from domain
link|flag
Yup, didn't realize that. Thanks. – Justin Oct 5 at 20:49
vote up 1 vote down

AFAIK SimpleDB doesn't do unique, but apart from that:

select itemName() from mydomain order by itemName()

should work, and you can remove duplicates (if any) very easily, since you're getting the names in sorted order (e.g. itertools.groupby in Python, and whatever analogous mechanism in whatever is your favorite language).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.