Dataview Query with case insensitive search of a field
TABLE ws_id, ws_url, ws_userName, ws_userEmail, ws_userPassword, ws_title
FROM "WebResources/AuthCredentials_Data"
WHERE contains(lower(ws_title), "service")
SORT ws_url DESC
Search
🌼 Oct 07, 2023, ✍ Sep 04, 2024, 🕒 1 min read
TABLE ws_id, ws_url, ws_userName, ws_userEmail, ws_userPassword, ws_title
FROM "WebResources/AuthCredentials_Data"
WHERE contains(lower(ws_title), "service")
SORT ws_url DESC