Yes; a related trick is if you have X potential filters, some of them optional, is to have the template say " AND ( some_field = ?=-1 OR some_field = ? =-1 ) ", and create a special function that wraps the execute call and binds all the second ?s. (in this case, -1 is a special value meaning 'ignore this filter').
Update from Paul Tomblin: I edited the answer to include a suggestion from the comments.
