Search
 
SCRIPT & CODE EXAMPLE
 

SQL

multiple like in sql

SELECT * FROM my_table WHERE (colA LIKE '%hello%' OR colB LIKE '%world%');
Comment

SQL LIKE With Multiple Values

SELECT *
FROM Customers
WHERE last_name LIKE 'R%t' OR last_name LIKE '%e';
Comment

PREVIOUS NEXT
Code Example
Sql :: can you put a break command in sql 
Sql :: reset postgresql password windows 
Sql :: mysql select random rows large table 
Sql :: find duplicates in column sql 
Sql :: show last sql executed in oracle 
Sql :: get first match in each group mysql query 
Sql :: postgres disable foreign keys 
Sql :: Remove duplicate old value in mysql 
Sql :: PG::ForeignKeyViolation: ERROR: update or delete on table violates foreign key constraint 
Sql :: local pg_sql to heroku pg_sql 
Sql :: was not locked with LOCK TABLES 
Sql :: mysql delete if not in another table 
Sql :: sql case sttement with set 
Sql :: mysql order by list 
Sql :: min and max salary and name in sql 
Sql :: sql procedure 
Sql :: mysql replace empty string with null 
Sql :: sqlalchemy _in array sqlite 
Sql :: create table if not exist 
Sql :: postgres jsonb array push new element 
Sql :: Create table if not exist with exceptions 
Sql :: union all in sql 
Sql :: mysql 5 minutes ago 
Sql :: ajax error exception handeling 
Sql :: changer un mot de passe mysql 
Sql :: sql countif 
Sql :: difference between ltrim and rtrim in sql server 
Sql :: oracle allow space to user 
Sql :: sqlalchemy where in query 
Sql :: Postgresql select join by date - Join rows where a timestamp value is equal to midnight of the date 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =