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.
|
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.
| |||||
feedback
|
|
Following could be coded into a function. You would need to trim off leading zeros to meet requirements of your question.
| |||
|
feedback
|
|
Please see this blog post, Converting Integers to Binary Strings, I posted a while back. | |||
|
feedback
|
| ||||
|
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? | |||
feedback
|
| ||||
|
feedback
|
|
this is a generic base converter http://dpatrickcaldwell.blogspot.com/2009/05/converting-decimal-to-hexadecimal-with.html you can do
| |||
|
feedback
|