XQueryPredikaten
XQueryPredicates are an essential part of the XQuery language, used to filter and select specific nodes from an XML document. They function as conditional expressions enclosed within square brackets [], following a path expression. These predicates evaluate to true or false for each node in the context of the path, and only those nodes for which the predicate evaluates to true are returned.
Commonly, predicates use comparison operators like =, !=, <, >, <=, and >= to compare node values or attributes with specific literals
Predicates can also contain other path expressions, forming nested conditions. The 'and' and 'or' operators can