how to get value of number into alphabet in sql server? -


how value of number 1,2,3,4............ in alphabet?

is there function convert directly?

i have blanck table column emp_id,empfname,emplname,doj

now want create 50000 employe cursor..how can do?

you can try this:

declare @num int = 1;  select    letters = char(64 + @num) 

Comments

Popular posts from this blog

xml - Extract substrings with XSLT -

math - "ELO Rating" and how does "TSR Rating" work? -

How can do a tuple comparison in coffeescript similar to that in python? -