icon
Leave a message

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Wednesday, 12 August 2015

Built String Function in Sql Server

Built String Function in Sql Server 1. Ascii:  Its return the ascii code for the given character expression Syntax:  ASCII('character_expresssion') Example  print ascii('A')   Output : 65 ***************** Using ASCII in  Sql Server ********************************** Example:1 declare @st int set @st=65 while(@st<=90) begin print char(@st) set @st=@st+1 end Output : A B C D E F G H I J K...