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)
1.4m articles
1.4m replys
5 comments
57.0k users