Changes between Version 1 and Version 2 of Ticket #36612


Ignore:
Timestamp:
Sep 16, 2025, 11:05:36 PM (4 weeks ago)
Author:
Jacob Tavener
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36612 – Description

    v1 v2  
    4545{{{#!div style="font-size: 80%"
    4646{{{#!sql
    47 JSON_UNQUOTE(JSON_EXTRACT(CAST(json_text as json), '$.key')) LIKE '%val%'
     47LOWER(JSON_UNQUOTE(JSON_EXTRACT(CAST(json_text as json), '$.key'))) LIKE LOWER('%val%')
    4848}}}
    4949}}}
     
    5757{{{#!div style="font-size: 80%"
    5858{{{#!sql
    59 CAST(json_text as json)->>'$.key' LIKE '%val%'
     59LOWER(CAST(json_text as json)) ->> '$.key' LIKE LOWER('%val%')
    6060}}}
    6161}}}
Back to Top