How do I create an "AND" filter to retrieve objects in Django? e.g I would like to retrieve a row which has a combination of two words in a single field.
For example the following SQL query does exactly that when I run it on mysql database:
select * from myapp_question
where ((question like '%software%') and (question like '%java%'))
How do you accomplish this in Django using filters?