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)