There is no combination of LIKE & IN in SQL, much less in TSQL (SQL Server) or PLSQL (Oracle). Part of the reason for that is because Full Text Search (FTS) is the recommended alternative.
Both Oracle and SQL Server FTS implementations support the CONTAINS keyword, but the syntax is still slightly different:
Oracle:
WHERE CONTAINS(t.something, 'bla OR foo OR batz', 1) > 0
SQL Server:
WHERE CONTAINS(t.something, '"bla*" OR "foo*" OR "batz*"')
The column you are querying must be full-text indexed.
Reference:
Related Posts:
- Inserting multiple rows in a single SQL query? [duplicate]
- T-SQL split string
- How do I perform an IF…THEN in an SQL SELECT?
- SQL Server : Arithmetic overflow error converting expression to data type int
- How to calculate percentage with a SQL statement
- What is the meaning of the prefix N in T-SQL statements and when should I use it?
- Query error with ambiguous column name in SQL
- How to group by month from Date field using sql
- How can I get column names from a table in SQL Server?
- What is the Oracle equivalent of SQL Server’s IsNull() function?
- How to format a numeric column as phone number in SQL
- SQL: IF clause within WHERE clause
- Selecting COUNT(*) with DISTINCT
- What is a stored procedure?
- Self Join to get employee manager name
- How do I UPDATE from a SELECT in SQL Server?
- SQL error “ORA-01722: invalid number”
- SQL query to select dates between two dates
- When should I use CROSS APPLY over INNER JOIN?
- SQL query to get the employee name and their manager name from the same table
- How can I do an UPDATE statement with JOIN in SQL Server?
- The SQL OVER() clause – when and why is it useful?
- Update multiple columns in SQL
- SQL Query with NOT LIKE IN
- How do I escape a single quote in SQL Server?
- SQL Server IF EXISTS THEN 1 ELSE 2
- T-SQL split string based on delimiter
- SQL Query with SUM with Group By
- How do I escape a single quote in SQL Server?
- IDENTITY_INSERT is set to OFF – How to turn it ON?
- SQL update from one Table to another based on a ID match
- Conversion of a varchar data type to a datetime data type resulted in an out-of-range value in SQL query
- Each GROUP BY expression must contain at least one column that is not an outer reference
- How to drop all tables from a database with one SQL query?
- Column name or number of supplied values does not match table definition
- Can a foreign key be NULL and/or duplicate?
- SQL Server FOR EACH Loop
- Query comparing dates in SQL
- SQL error “ORA-01722: invalid number”
- PLS-00103: Encountered the symbol when expecting one of the following:
- How to drop all tables from a database with one SQL query?
- How to find sum of multiple columns in a table in SQL Server 2005?
- Operand type clash: int is incompatible with date + The INSERT statement conflicted with the FOREIGN KEY constraint
- Keeping it simple and how to do multiple CTE in a query
- How can I delete using INNER JOIN with SQL Server?
- Why use a READ UNCOMMITTED isolation level?
- Find all tables containing column with specified name – MS SQL Server
- DateTime2 vs DateTime in SQL Server
- Conversion of a varchar data type to a datetime data type resulted in an out-of-range value in SQL query
- CREATE TABLE IF NOT EXISTS equivalent in SQL Server
- SQL – The conversion of a varchar data type to a datetime data type resulted in an out-of-range value
- How to get a date in YYYY-MM-DD format from a TSQL datetime field?
- How to parse XML data in SQL server table
- Search text in stored procedure in SQL Server
- What is the equivalent of ‘describe table’ in SQL Server?
- Error converting data type varchar to float
- MS SQL compare dates?
- MS SQL compare dates?
- I want to use CASE statement to update some records in sql server 2005
- What represents a double in sql server?
- Get size of all tables in database
- Using RegEx in SQL Server
- Conversion failed when converting the varchar value ‘simple, ‘ to data type int
- SELECT DISTINCT on one column
- Exclude a column using SELECT * [except columnA] FROM tableA?
- Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 1, column 4 (Year)
- ORA-06502: PL/SQL: numeric or value error: character string buffer too small
- TSQL PIVOT MULTIPLE COLUMNS
- SQL – WHERE (X, Y) IN (A, B)
- SQL “select where not in subquery” returns no results
- Equivalent of Oracle’s RowID in SQL Server
- sql query to return differences between two tables
- How do I format a number with commas in T-SQL?
- Is it possible to specify condition in Count()?
- SQL Server dynamic PIVOT query?
- Error converting data type varchar
- Temporary table in SQL server causing ‘ There is already an object named’ error
- I want to use CASE statement to update some records in sql server 2005
- To add server using sp_addlinkedserver
- How to calculate age (in years) based on Date of Birth and getDate()
- ORDER BY items must appear in the select list if SELECT DISTINCT is specified
- Text was truncated or one or more characters had no match in the target code page including the primary key in an unpivot
- How can I group by date time column without taking time into consideration
- How to select the last record of a table in SQL?
- SQL- Ignore case while searching for a string
- Comma separated results in SQL
- ORA-01779: cannot modify a column which maps to a non key-preserved table
- “select * into table” Will it work for inserting data into existing table
- SUM OVER PARTITION BY
- Update query using Subquery in Sql Server
- Varchar invalid for Sum operator
- Using Excel VBA to run SQL query
- What is tableName.* in SQL
- SQL Server: Difference between PARTITION BY and GROUP BY
- ORA-01843 not a valid month- Comparing Dates
- Sql Server string to date conversion
- Arithmetic overflow error converting expression to data type datetime. (while displaying date time..)
- Subtract one day from datetime
- Backup a single table with its data from a database in sql server 2008
- ora-06553 pls-306 wrong number or types of arguments in call to ‘ogc_x’