Is there an easy and / or efficient way to make database requests that take fields in flexform columns into account, e.g. for sorting, where clause, etc.
May it be through TypoScript DatabaseQueryProcessor or PHP exec_INSERT/UPDATE/DELETE/SELECTquery.
I currently don't have a good valid option how to do it, would be really happy for a solution.
UPDATE: Thanks for all of your answers, I was thinking about switching some setups from normal database columns to Flexform to allow backend users to create the form structure dynamically but I obviousely won't do this for fields that I need to search through as this needs to be parsed twice as all of you guys mentioned. Anyways the new FlexForm Processor is pretty cool, it makes reading those fields for normal data output super easy (and it brings an end to different flexform processing of each extension which I was struggling with sometimes). Thanks for your help.
You might want to take a look at the ExtractValue approach of MySQL in this case.
https://dev.mysql.com/doc/refman/5.7/en/xml-functions.html
If you know the exact XPATH to your XML tag, this will return the text value of that XML tag.
It's not very performant, since still the strings have to be parsed, but in this case it will be done on the MySQL server side with a function that might still give you some advantage over PHP based parsing.
We've got some good results with that approach while migrating content elements away from FlexForm fields and into really normalised database fields.