Merge pull request 'feed: correct the case sensitivity example in the full table search post' (#14) from fix/full-table-search-case-sensitivity into main
publish / Build-and-publish (push) Successful in 3m58s

Reviewed-on: #14
Reviewed-by: Allan <allan@4gl.io>
This commit was merged in pull request #14.
This commit is contained in:
2026-09-17 07:47:31 +00:00
+1 -1
View File
@@ -17,7 +17,7 @@ Finding a value in a large table usually means writing a query first: guess whic
The search box sits in the Viewer toolbar, next to a **Numeric** checkbox: The search box sits in the Viewer toolbar, next to a **Numeric** checkbox:
- **Text search** matches part of a value, so `smith` finds `Smithson` and `Goldsmith`. The comparison is case sensitive, using the SAS® `CONTAINS` operator. - **Text search** matches part of a value using the case sensitive SAS® `CONTAINS` operator, so `smith` finds `Goldsmith` but not `Smithson`.
- **Numeric search** (tick the box) matches the number exactly against every numeric column in the table. - **Numeric search** (tick the box) matches the number exactly against every numeric column in the table.
Whichever you use, the results are ordinary rows in the Viewer, with the rest of the screen behaving exactly as it does for a normal view. Whichever you use, the results are ordinary rows in the Viewer, with the rest of the screen behaving exactly as it does for a normal view.