Search
 
SCRIPT & CODE EXAMPLE
 

SQL

regexp_like in oracle example

SELECT *
FROM names
WHERE regexp_like (name , 'z') ;
 
-- Oracle REGEXP_LIKE example would
--retrieve all of the names that contain the letter ‘z’. 

NAME
-------------------------
Lorentz
Gietz
Comment

Not REGEXP_LIKE in Oracle

select *
from users 
where not regexp_like(phone_number, '^+[0-9]{9,13}$')
Comment

PREVIOUS NEXT
Code Example
Sql :: oracle last modification in table 
Sql :: import mysql database command line linux 
Sql :: postgres left join 
Sql :: convert columns to rows in sql server 
Sql :: sql server port 
Sql :: mysql select latest entry by time 
Sql :: stuff sql server 
Sql :: postgres get number of days between two dates 
Sql :: order by ip address sql 
Sql :: postgres windows import dump 
Sql :: sql top 3 for each group 
Sql :: insert query in sql 
Sql :: oracle select json_table example 
Sql :: dbms_metadata.get_ddl table 
Sql :: sqlite commands 
Sql :: check if word is in column sql 
Sql :: sql script to remove default from column 
Sql :: find a column by name in a sql server table 
Sql :: postgres having 
Sql :: delete table in mysql 
Sql :: sql date function 
Sql :: sql server check for value in multiple columns 
Sql :: sql insert data 
Sql :: how to find max and min salary in sql 
Sql :: mysql search replace 
Sql :: when matched in sql server 
Sql :: lost connection to mysql server during query when dumping table 
Sql :: sql where is not number 
Sql :: mysql workbench format date 
Sql :: download database devilbox 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =