AFAIK SimpleDB does not unique, but other than this:
select itemName() from mydomain order by itemName()
should work, and you can easily remove duplicates (if any) since you get the names in sorted order (like itertools.groupbyin Python and any similar mechanism in any of your favorite languages).
source
share