I want to to establish a filter in SQLite without using sentences SQL, is this possible?
Example:
Table1 with two fields: Code and Color
1, green
2, green
3, red
4, yellow
5, green
SETFILTER(Color,'green'); <-- Without using sentences SQL
Resulting table:
1, green
2, green
5, green
Best regards.