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?