Thursday, May 08, 2025

Breaking News
>> Securing and encrypt View State and Cookies values  >> Page has one or more controls that do not correspond with   >> “The Controls collection cannot be modified because the control contains code blocks”  >> How to fix "Validation(): Element 'xxxx' is not supported  >> How to create a new session in ASP.NET programmatically  >> MySQL Database Backup using mysqldump command    

Editors Picks

Tuesday, December 13, 2011

like with regular expressions in oracle

select sum(TERT_COUNT) from gj_chl_tert_sales where  REGEXP_LIKE(TERT_COUNT, '[[:digit:]]');

select sum(TERT_COUNT) from gj_chl_tert_sales where  REGEXP_LIKE(TERT_COUNT, '[^0-9]');

select sum(TERT_COUNT) from gj_chl_tert_sales where  REGEXP_LIKE(TERT_COUNT, '[[:alpha:]]');

select sum(TERT_COUNT) from gj_chl_tert_sales where  REGEXP_LIKE(TERT_COUNT, '[A-Z]');

No comments :

Post a Comment

Contact Us

Name

Email *

Message *