Technical Blog

Pages

▼
Showing posts with label REGEXP_REPLACE. Show all posts
Showing posts with label REGEXP_REPLACE. Show all posts
Oct 29, 2010

To get only numeric values

›
To  retrieve only numeric values from both numeric& character value In 10 g Select  regexp_replace(regexp_replace('5RTYDDB',...
Nov 24, 2009

REGEXP 3

›
To get decimals points and vicevers SELECT REGEXP_REPLACE('18.01', '(\d+)\.(\d+)', '\1') FROM dual; SELECT REGE...
Sep 9, 2009

REGEXP 2

›
Contains alphabets SELECT * FROM test WHERE REGEXP_LIKE(testcol, '[[:alpha:]]') Contains only alphabets SELECT * FROM test W...
Jul 15, 2009

REGEXP

›
REGEXP_LIKE SELECT * FROM scott.emp WHERE REGEXP_LIKE(ENAME,'FR') ; OR SELECT * FROM scott.emp WHERE ENAME LIKE '%FR%'...
›
Home
View web version
Powered by Blogger.