Page 1 of 1

URL convention

PostPosted: Mon May 10, 2010 6:12 pm
by kevinwen
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')

Re: URL convention

PostPosted: Mon May 10, 2010 6:32 pm
by shannah
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.