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 -

python - RuntimeWarning: PyOS_InputHook is not available for interactive use of PyGTK -

Fatal error: Call to undefined function menu_execute_active_handler() in drupal 7.9 -