Anyone happen to have a function that does the following:
I have an integer for example 57.
This translates to binary: 111001
I'm looking for a function like this:
Code Snippet
CREATE FUNCTION [dbo].[BinToBit] (@.ValueCol int, @.Number TinyInt)
RETURNS bit AS
If I would call the function:
select dbo.BinToBit(57, 0) it should return 1
select dbo.BinToBit(57, 1) it should return 0
select dbo.BinToBit(57, 2) it should return 0
select dbo.BinToBit(57, 3) it should return 1
select dbo.BinToBit(57, 4) it should return 1
select dbo.BinToBit(57, 5) it should return 1
I've been looking on the net, because I'm convinced someone must have this kind of function, unfortunately haven't been able to find it.
CREATE FUNCTION [dbo].[BinToBit] (@.ValueCol int, @.Number TinyInt)
RETURNS bit AS
BEGIN
RETURN (@.ValueCol & POWER(2,@.Number))
END
|||Ha! Perfect thanks!
No comments:
Post a Comment