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