|
Filters 101 - Part 3 |
Top Previous Next |
|
In part 2 some simple filters were shown to help you understand the components of a database filter. A database filter can be very simple, or fairly complex - it depends on the type of report that you are attempting to create.
In it's most simple form database filters can be used for three different situations:
Here are some situation descriptions and a simple database filter for each:
Customers who drive a BMW CUS:CarType = 'bmw'
Products made by MierWater ITM:Company = 'mierwater
Items with an onhand quantity greater than 20 ITM:QtyOnhand > 20
Children who are too young to be in Kindergarten Nam:Age < 7
Customers who have pets NAM:Pets = 1
Items with no detailed information available ITM:Detailed = 0
The 6 example filters above are very simple in structure, but some interesting details quickly become apparent:
|