5 lines
82 B
SQL
5 lines
82 B
SQL
Value VARCHAR2( 10 ) := '123';
|
|
IF( IsNumeric( Value ) )
|
|
THEN
|
|
NULL;
|
|
END IF;
|