Computer Science, asked by aishusrini3370, 11 months ago

How to get [a-z] from given string in sql server?

Answers

Answered by N3KKI
2

SQL Server SUBSTRING() Function

Extract 3 characters from a string, starting in position 1: SELECT SUBSTRING('SQL Tutorial', 1, 3) AS ExtractString;

Extract 5 characters from the "CustomerName" column, starting in position 1: ...

Extract 100 characters from a string, starting in position 1:................

Similar questions