Substring | How to use in sql server | with example
How to use substring.
substring is built in function in sql server.
select
substring(stud_name,9,16) as Name ,
roll_no from [table_name] .
How to use substring.
substring is built in function in sql server.
select
substring(stud_name,9,16) as Name ,
roll_no from [table_name] .
0 comments: