Step 1 – Searching Various Fields
- Find the Client Search page
- We will search various fields in this page using PL/SQL operators
Step 2 – Text
- LIKE
- Use '%' to match groups of characters, for example '%ill' will return "Mill", "Gill" and "Seagill"
- Use '_' to match single characters, for example '_ill' will return only "Mill" and "Gill"
- EQUAL
- Will only return exact matches
Step 2 – Number
- EQUAL
- GREATER
- LESS
Step 3 – Date
- BETWEEN