Changes between Version 4 and Version 5 of AdvancedReports


Ignore:
Timestamp:
09/26/25 12:47:14 (3 weeks ago)
Author:
226026
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedReports

    v4 v5  
    3737}}}
    3838
     39== Приказ на сите топици или прокети кои ги задоволовуаат дадените критериуми
    3940
    40 
     41{{{
     42SELECT *
     43FROM v_named_threads t
     44WHERE (:title IS NULL OR t.title LIKE :title || '%')
     45AND (CAST(:type as varchar) IS NULL OR t.type like :type || '%')
     46AND (CAST(:content as varchar) IS NULL OR t.content LIKE :content || '%')
     47AND (CAST(:tags as varchar) IS NULL OR t.tags @> string_to_array(:tags,',')::varchar[])
     48}}}