Is there a way to set the field type, default value for a parameter?
With
c1 As (Select
DUAL.DUMMY,
:P1 As P1
From
DUAL)
Select
c1.DUMMY,
c1.P1
From
c1
I would like to set the acceptable input such as Number for P1
With
c1 As (Select
DUAL.DUMMY,
:P1 As P1
From
DUAL)
Select
c1.DUMMY,
c1.P1
From
c1
I would like to set the acceptable input such as Number for P1
Thank you for your question.
We will implement such ability in the next version.