If the phone number is like the format 9725551234 then the query would be:
Delete from clients where substring(voicephone,4,3)='555'
If the phone number format is 972-555-1234 then the query would be:
Delete from clients where substring(voicephone,5,3)='555'