Table-level filter capability (if set) is included in the WHERE clause of any generated SELECT statement. This gives you ability to work with a subset of data from table.
Example 3-15. Filter examples
$opts['filters'] = 'column1 like "%11%" AND column2 < 17'; $opts['filters'] = 'section_id = 9'; $opts['filters'] = 'Table0.sessions_count > 200'; |
For future is planned initialization like the following one.
$opts['filters'] = array( 'col_name_1' => 'value_1', 'col_name_2' => 'value_2' ); |