You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 4
Next »
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"
- Type a series of words seperated by only commas and no spaces to see them all, for example "Max,Alex" or "_ax,%ex"
- EQUAL
- Will only return exact matches
Step 3 – Number
- EQUAL
- GREATER
- LESS
Step 4 – Date
- BETWEEN