About 439,000 results
Open links in new tab
  1. How to use SQL LIKE condition with multiple values in PostgreSQL?

    Is there any shorter way to look for multiple matches: SELECT * from table WHERE column LIKE "AAA%" OR column LIKE "BBB%" OR column LIKE "CCC%" This questions applies to PostgreSQL ...

  2. SQL 'LIKE' query using '%' where the search criteria contains

    May 29, 2012 · check out sql-server-performance for a v short comparison. Note that using like 'findme%' can still use an index if it exists.

  3. How can I introduce multiple conditions in LIKE operator?

    Sep 7, 2009 · 60 Oracle 10g has functions that allow the use of POSIX-compliant regular expressions in SQL: REGEXP_LIKE REGEXP_REPLACE REGEXP_INSTR REGEXP_SUBSTR See the Oracle …

  4. How to use multiple values with like in sql - Stack Overflow

    Jul 17, 2016 · How to use multiple values with like in sql Asked 9 years, 5 months ago Modified 9 years, 5 months ago Viewed 53k times

  5. Combining "LIKE" and "IN" for SQL Server - Stack Overflow

    Is it possible to combine LIKE and IN in a SQL Server-Query? So, that this query

  6. sql - Why does using an Underscore character in a LIKE filter give me ...

    The underscore is the wildcard in a LIKE query for one arbitrary character. Hence LIKE %_% means "give me all records with at least one arbitrary character in this column".

  7. sql - How do you OR two LIKE statements? - Stack Overflow

    Dec 19, 2016 · SELECT col FROM db.tbl WHERE page LIKE ('str1' OR 'str2') AND col2 = num results in "Truncated incorrect DOUBLE value: str1" and "Truncated incorrect DOUBLE value: str2" for what …

  8. sql - MySQL Like multiple values - Stack Overflow

    Nov 13, 2010 · This wouldn't be beneficial in multiple (let's say 5 or more dynamic searchable query), thus, it'd be better to use regexp.

  9. sql - how to use LIKE with column name - Stack Overflow

    Normally LIKE statement is used to check the pattern like data. example: select * from table1 where name like 'ar%' My problem is to use one column of table with LIKE statement. example: sele...

  10. sql server - SQL Multiple LIKE Statements - Stack Overflow

    Jun 22, 2015 · Confirmed this worked. I used this for a set of 4,000 values, all was well. I'll leave another tip for something like that; I like to use the multiple cursor shortcut, alt+shift+ click somewhere on any …