This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |
| ref:glossary:query_rule_form [2026/08/13 00:43] – ↷ Page moved from glossary:query_rule_form to ref:glossary:query_rule_form localdev | ref:glossary:query_rule_form [2026/08/13 00:43] (current) – ↷ Links adapted because of a move operation localdev |
|---|
| ===== Query rule form ===== | ===== Query rule form ===== |
| |
| The rule form is a section of the query editor in the [[glossary:configuration_tool|Configuration Tool]] where a [[glossary:configurator|configurator]] can specify a [[glossary:query|query]] using the [[glossary:rule_language|rule language]]. It can be used for queries that are too complex to be defined in the [[glossary:query_simple_form|simple form]]. For example, a query in the rule form that finds all members over 16 years old and lists them in the alphabetical order may look like this: | The rule form is a section of the query editor in the [[ref:glossary:configuration_tool|Configuration Tool]] where a [[ref:glossary:configurator|configurator]] can specify a [[ref:glossary:query|query]] using the [[ref:glossary:rule_language|rule language]]. It can be used for queries that are too complex to be defined in the [[ref:glossary:query_simple_form|simple form]]. For example, a query in the rule form that finds all members over 16 years old and lists them in the alphabetical order may look like this: |
| |
| <code aim>FIND Member WHERE Member.Age > 16 ORDER BY Member.LastName </code> | <code aim>FIND Member WHERE Member.Age > 16 ORDER BY Member.LastName </code> |
| |
| |
| This particular example can also be specified using the [[glossary:query_simple_form|simple form]]. | This particular example can also be specified using the [[ref:glossary:query_simple_form|simple form]]. |
| |
| |
| |