I am trying to display a SimpleDB query and noticed that the order of the attributes are not always the same per query.
For example, one query result might look like:
Item
URL:....
Date:...
then another query might look like this:
Item
Date:...
URL:....
The order by
sorts out each item but does it sort the attributes? is there a way to always have the attributes sorted in an alphabetical order?
I am using java to access the db.
Query: selectExpression = "select * from
" + "urlswhere url = '" + "stack.com" +"'";