Scalar-valued Functions [dbo].[bitand]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@xint4
@yint4
SQL Script
CREATE FUNCTION [dbo].[bitand](@x as int, @y as int)
returns int
begin
    return @x & @y
end
GO
Uses
Used By