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

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -