views:

380

answers:

2

I know how to successfully use arguments in drupal's views module, but when it "filters" based on those arguments it uses "=" in the where clause of the SQL statement. However, I would like to use "like" instead of "=" in the where clause of the SQL statement so I can pass in, say the title of a node, as an argument and then show all nodes that CONTAIN the title passed in. I am not interested in grabbing only the nodes where the title is exactly the same as the title passed in. Does anyone know how I can do this? Is this possible?

A: 

one possible solution would be to generate the view by code with your required query.

Obaid
Do you have an example of how I might do this? If I do this can I then edit the view using the Views UI?
Brian T Hannan