put those numbers you've in a table and then use a query like
SELECT p.*,
CASE WHEN t.number IS NOT NULL THEN 'Exists' ELSE 'Not EXists' END
FROM PhoneTable p
LEFT JOIN YourTable t
ON p.Telephone LIKE '%' + CAST(t.yournumber AS varchar(5))+ '%'
------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/