dbo.QER_FTITShopOrgByIdentOrg
Inline Table FunctionSQL_INLINE_TABLE_VALUED_FUNCTIONSandbox DB
Interpretation
- Database function. Usually supports views, validation, or calculated predicates; look at referenced-by entries for callers.
Relations
- No extracted relations.
Typed Edges
- No typed edges extracted for this source.
References
- No direct source references extracted.
Referenced By
- No direct source references extracted.
Complete Source
1CREATE FUNCTION dbo.QER_FTITShopOrgByIdentOrg(2 @search_value nvarchar(max)3) RETURNS TABLE4AS5RETURN(6SELECT UID_ITShopOrg7FROM ITShopOrg8WHERE9 Ident_Org LIKE '%' + @search_value + '%')
Open raw exported source
1create function dbo.QER_FTITShopOrgByIdentOrg (@search_value nvarchar(max)) returns table as return( select UID_ITShopOrg from ITShopOrg where Ident_Org2 like '%' + @search_value + '%' ) 3