- Posts: 10
- Thank you received: 0
I understand there is a search form to find entries in table JX. Is there a way to remove any records that contain a certain value?
Please Log in or Create an account to join the conversation.
Hi,
There is an option in the backend "Additional Where Condition", where you can set any filter you want in the form of SQL WHERE clause. For example if you do not want to show records with mycolumn = 'myvalue', you would put in the textbox something like:
mycolumn <> 'myvalue'
Please Log in or Create an account to join the conversation.