I have several scripts that I use to convert columns with decimal values over to binary column, or vice versa. It would be so much easier to not have to run a script if a column could have a built in function(s) to convert to/from Decimal, Binary, and Hexadecimal. That way just sharing a table with others would not require "instructions" to run scripts if the table got updated.
It would also be great if it could be parameterized so the output is X digits after converting (especially when converting decimal to binary)
E.g.,
DECTOBIN ( 3, --> 00000011
DECTOBIN ( 3, 4) --> 0011
BINTODEC (0011) --> 3