How to detect if a string contains at least a number (digit) in SQL server 2005?
Use this:
SELECT * FROM Table WHERE Column LIKE '%[0-9]%'
MSDN - LIKE (Transact-SQL)
2.1m questions
2.1m answers
60 comments
57.0k users