Answer:
Answer explained below
Step-by-step explanation:
since there is no table showing the columns, i will consider mobile as phone number and id as supplier id and code as area code.
the query is as follows
select id,mobile from suppliers where mobile like '%0%0%' and code like '%0%0%'.
here we have used two like operators i.e one for mobile and one for area code.
'%0%0%' means that the number should contain two zeros and positions can be wherever in the number.