I just can't figure out how for the views argument to user the "Like" operator instead of "=" operator.
I would like to have a view that lists all the users that start with the alphabetical letter that is sent via the URL.
The SQL would end up being ..
SELECT users.uid AS uid, users.name AS users_name FROM users users WHERE users.name Like 'A%'
Any help or direction is appreciated.
I just can't figure out how for the views argument to user the "Like" operator instead of "=" operator.
I would like to have a view that lists all the users that start with the alphabetical letter that is sent via the URL.
The SQL would end up being ..
SELECT users.uid AS uid,
users.name AS users_name
FROM users users
WHERE users.name Like 'A%'
Any help or direction is appreciated.