Know what would be revolutionary?
-
Know what would be revolutionary? Not integrating AI into systems... Integrating bulk editing features, or report writing, or SQL querying (but locked down).
select * from transactions where description="*coffee*"
(I don't remember if you can use * as a wildcard in SQL, but you get the idea.)
-
Know what would be revolutionary? Not integrating AI into systems... Integrating bulk editing features, or report writing, or SQL querying (but locked down).
select * from transactions where description="*coffee*"
(I don't remember if you can use * as a wildcard in SQL, but you get the idea.)
@Moosader in sqlite3 it's this for some reason:
select * from transactions where description like "%coffee%"
-
@Moosader in sqlite3 it's this for some reason:
select * from transactions where description like "%coffee%"
@Moosader i think they should have an inverse wildcard match operator called "dislike"