dbo.QBM_FGIBitNot
Scalar FunctionSQL_SCALAR_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.QBM_FGIBitNot(2 @Operand1 int3) RETURNS int4 WITH SCHEMABINDING5AS6BEGIN7 RETURN(~ @Operand1)8END
Open raw exported source
1 create function dbo.QBM_FGIBitNot (@Operand1 int) returns int with SCHEMABINDING as begin return (~ @Operand1 ) end 2