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 :: how to inner join 4 tables in sql 
Sql :: docker create postgresql database 
Sql :: mysql récupérer le code création de vue 
Sql :: postgresql Create a new role with a username and password 
Sql :: How to pass password to mysql command line 
Sql :: SQL Multiple Cases 
Sql :: mysql get last inserted id 
Sql :: 3rd highest value in sql 
Sql :: mysql like case sensitive 
Sql :: check database size in gb mysql 
Sql :: oracle apex debug time 
Sql :: import sql in postgresql 
Sql :: SQL server how to see user permissions on objects 
Sql :: json with root element in sql server 
Sql :: oracle shrink table 
Sql :: mysql compare timestamp in minutes 
Sql :: what is the difference between clustered and non-clustered index in sql server 
Sql :: get number of columns sql 
Sql :: how to change db owner postgres 
Sql :: get max salary from each department sql 
Sql :: importing excel data into sql server 
Sql :: login phpmyadmin without password 
Sql :: sql time format 
Sql :: sqlite insert or update 
Sql :: codeigniter get sql query string 
Sql :: sql server current time without date 
Sql :: mysql regex exact match 
Sql :: what is having clause in sql 
Sql :: sql oracle limit 
Sql :: import data from csv to sql server 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =