URL convention
Archived from the Xataface Users forum.
kevinwen — Mon May 10, 2010 6:12 pm
I read the article here: http://xataface.com/wiki/URL_Conventions
My question is: could we construct a URL for the condition below?
- Code: Select all
where (first_name = 'bob' AND last_name = 'frank') OR (first_name = 'steve' AND last_name = 'goodman')
shannah — Mon May 10, 2010 6:32 pm
You can’t do that with a query. But you can achieve the same results by creating a calculated field fullname which is the concatenation of first and last , then search on that field instead.