[dbo].[bitand]
(local)
>
mdb
>
Scalar-valued Functions
> dbo.bitand
Properties
Parameters
SQL Script
Uses
Used By
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@x
int
4
@y
int
4
SQL Script
CREATE
FUNCTION
[dbo]
.
[bitand]
(
@x
as
int
,
@y
as
int
)
returns
int
begin
return
@x
&
@y
end
GO
Uses
dbo
Used By
[dbo].[AL_BATCH_SAVE_CONFIGURATION]
[dbo].[AL_GET_CRITERIA_DEF]
[dbo].[AL_GET_CRITERIA_DEF_SYS]
[dbo].[AL_GET_FIELDS_TO_RENDER_CONFIG]
[dbo].[AL_GET_FIELDS_TO_RENDER_SEARCH]
[dbo].[al_get_fields_to_render_secure]
[dbo].[AL_GET_FIELDS_TO_RENDER_SYS]
[dbo].[AL_RECURSIVE_LOAD_PARENT_PERM]
[dbo].[AL_GET_SUBTYPEOBJ_PERMISSION]