KrzysztofDusko / JustyBase

SQL editor/IDE
GNU General Public License v3.0
10 stars 0 forks source link

Full text search #283

Closed krzysztof-dusko-velo closed 7 months ago

krzysztof-dusko-velo commented 7 months ago

add full text search in sql query.

some sql code

and some specja clause with filtering rows by text simillar to image but applied online. Argumetation - search for some "special word" with no knwolage witch column can contains this and reulst set i to large to search in grid..

KrzysztofDusko commented 7 months ago
declare &SEARCHED = '''%ron%''';
select * from public.actor a
where a.last_name like &SEARCHED or a.first_name like &SEARCHED;
KrzysztofDusko commented 7 months ago

image and for massive oprations on image

image