Difference between revisions of "SQL - Check with regex if the string text is only composed of numbers"

From GUILLARD WIKI
Jump to navigation Jump to search
 
Line 1: Line 1:
<syntaxhighlight lang="sql">
select
select
   text,
   text,
Line 10: Line 11:
   select '19 mai 1989' text from dual
   select '19 mai 1989' text from dual
);
);
</syntaxhighlight>

Latest revision as of 10:10, 13 April 2018

select
  text,
  case 
    when REGEXP_LIKE (trim(text), '^[0-9]*$') then 'Yes'
    else 'No'
  end "Only numbers ?"
from(
  select '19051989' text from dual
  union
  select '19 mai 1989' text from dual
);