Skip to content

Commit

Permalink
fix(docs): correct age filtering description
Browse files Browse the repository at this point in the history
Updated the documentation to accurately describe the age filtering criteria. The previous text incorrectly stated filtering for people under 18 and over 90, which contradicted the query logic. The corrected description now states filtering for people under 90 and over 18.
  • Loading branch information
saidmtanzania authored Sep 9, 2024
1 parent c961246 commit a0e6503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/04.guides/04.cookbooks/20.query-of-queries/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Let's say you have the following database query, ```myQuery```:

You would now have a list of names, ages and locations for all the people in a query called ```myQuery```.

Say you want to filter out people under 18 and over 90, but you don't want to hit the database again:
Say you want to filter out people under 90 and over 18, but you don't want to hit the database again:

```lucee
<cfquery name="filteredQuery" dbtype="query">
Expand Down

0 comments on commit a0e6503

Please sign in to comment.