SQL SELECT LIKE (Insensitive casing)

后端 未结 9 1787
野性不改
野性不改 2021-02-02 05:32

I am trying to execute the sql query:

select * from table where column like \'%value%\';

But the data is saved as \'Value\' ( V is capital ).

9条回答
  •  别那么骄傲
    2021-02-02 06:17

    This will eventually do the same thing. The ILIKE works, irrespective of the casing nature

    SELECT * FROM table WHERE column_name ILIKE "%value%"

提交回复
热议问题