What exactly are you trying to do?
It looks like you're trying to find all form fields that are not currently associated with a form. If that's the case, a left outer join where application.form = null would probably get you what you're looking for...assuming application.form is the foreign key for form_field.form_id, of course.
If it returns 0 rows, that likely means that there are no orphaned form_field entities...which should be the case, assuming a 3rd normal form...otherwise, you've got bigger issues with your data model.