Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Removing leading zeroes from a field in a SQL statement

In a SQL Server 2008 database I have a string column which I need to select with the leading "0"s removed. E.g. 0023AFF should be returned as 23AFF. Is this possible in T-Sql and how?

share|improve this question
2  
See this Stack Overflow post: stackoverflow.com/questions/92093/… – Aziz Shaikh Nov 22 '12 at 11:56
@Aziz, thanks. I didn't find that on my search. – GaussZ Nov 22 '12 at 11:56

marked as duplicate by GaussZ, Bridge, Aziz Shaikh, ρяσѕρєя K, Donal Fellows Nov 22 '12 at 22:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 4 down vote accepted

Use PatIndex

declare @s varchar(20)='0023aff'

select substring(@s,PATINDEX('%[^0]%',@s),LEN(@s))
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.