Documentation Index
Fetch the complete documentation index at: https://docs.oxla.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
TheBOOL_OR() function calculates all the boolean values in the aggregated group, which will have these results:
falseif all the values arefalsefor every row.trueif at least one row in the group is true.
BOOL.
NULL values are not aggregated, so it will return NULL if there are zero input rows.Examples
In this example, we will use a payment** **table that stores details of the orders, whether the order has been paid or unpaid by the customer:Case #1: BOOL_OR with a true result
We will find out if all customers have paid for their orders using the query below:
TRUE value, the overall result will be TRUE. The final output shows that some order has been paid regardless of the other unpaid orders.
Case #2: BOOL_OR with a false result
We will find out if Aaron has paid for his orders using the query below:
FALSE, then the overall result will be FALSE. The final output shows that Aaron hasn’t paid for all his orders.