up vote 4 down vote favorite
1
share [g+] share [fb]

I was wondering if there was an easy way in SQL to convert an integer to its binary representation and then store it as a varchar.

For example 5 would be converted to "101" and stored as a varchar.

link|improve this question

1  
What do you want for -5? "-101" or "11111111111111111111111111111100"? – Constantin Sep 24 '08 at 16:45
feedback

6 Answers

up vote 4 down vote accepted

Following could be coded into a function. You would need to trim off leading zeros to meet requirements of your question.

declare @intvalue int
set @intvalue=5

declare @vsresult varchar(64)
declare @inti int
select @inti = 64, @vsresult = ''
while @inti>0
  begin
    select @vsresult=convert(char(1), @intvalue % 2)+@vsresult
    select @intvalue = convert(int, (@intvalue / 2)), @inti=@inti-1
  end
select @vsresult
link|improve this answer
feedback

Please see this blog post, Converting Integers to Binary Strings, I posted a while back.

link|improve this answer
That's a clever way to do it! – Jeff Sep 24 '10 at 20:33
feedback
declare @i int /* input */
set @i = 42

declare @result varchar(32) /* SQL Server int is 32 bits wide */
set @result = ''
while 1 = 1 begin
  select @result = convert(char(1), @i % 2) + @result,
         @i = convert(int, @i / 2)
  if @i = 0 break
end

select @result
link|improve this answer
feedback

Is it possible to do something similar with a varchar string? What I have is a string that would look something like this

1, 5, 12

and I need to read this cell and convert it to

0001000000100010

to indicate that the 1st, 5th and 12th bits are on. Is there a good way to do this?

link|improve this answer
Possible but fiddly! I'd use some word splitting code (plenty of examples around for that) to find the individual entities in the list then left join that against a numbers table for the range you want, saving into a table variable. From there you can set your bit fields based on whether there's a join match or not and it's just a case of looping through your table variable to build up the output. – eftpotrm Jan 24 '11 at 11:09
feedback
declare @intVal Int 
set @intVal = power(2,12)+ power(2,5) + power(2,1);
With ComputeBin (IntVal, BinVal,FinalBin)
As
    (
    Select @IntVal IntVal, @intVal %2 BinVal , convert(nvarchar(max),(@intVal %2 ))     FinalBin
    Union all
    Select IntVal /2, (IntVal /2) %2, convert(nvarchar(max),(IntVal /2) %2) + FinalBin     FinalBin
    From ComputeBin
    Where IntVal /2 > 0
)
select FinalBin from ComputeBin where intval = ( select min(intval) from ComputeBin);
link|improve this answer
feedback

this is a generic base converter

http://dpatrickcaldwell.blogspot.com/2009/05/converting-decimal-to-hexadecimal-with.html

you can do

select reverse(dbo.ConvertToBase(5, 2))   -- 101
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.