I am designing the layout and usage of an Amazon SimpleDB application. The docs for simpleDB give several example queries: Here is one: ref: http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1231
select * from mydomain where Title = 'The Right Stuff'
I would like to use something like:
select * from mydomain where * = 'The Right Stuff'
So I can search through all attributes for 'The Right Stuff'.
I know I could build a database and test this, but right now I'm not coding, just planning, so if there is anyone out there who knows the solution to this, then thanks.
Is there a public database out there we can query for testing?
--Tom