I have simple question. why would :
select regexp_like( (select 'https://www.hotmail.com' from dual) ,'(f|ht)tps?:') from dual ;
not work?
|
I have simple question. why would :
not work? |
|||
|
What do you expect this query to do?
|
||||
|
|
|
Because for some strange reason, although regexp_like looks like a function on a first glance, it is not a function in reality, but is a condition (an integral part of SQL syntax). But, more confusingly, it is a function if used in PL/SQL:
|
|||||||||||
|
select 'A'='A' from dual;'does not work'? (something similar works on other RDBMSs - eg postgres) – Jack Douglas♦ Sep 12 '12 at 14:57