Execute function inside view SQL server

I have an SQL function and I need to execute it in an SQL view.

any suggestion..

+5
source share
2 answers
create view dbo.ViewName
as
select
dbo.Function(parameter)
from dbo.TableName
+13
source

enter image description here

The format of the string is the same as in the stringCriteria parameter of the CriteriaOperator.Parse parameter. You can add question marks to a string to indicate the position of parameter values. When an expression is evaluated, question marks are replaced with parameter values. To provide parameter values, use the CriteriaParameters property.

-1
source

All Articles