With the PRO version of DB Replacer you can limit the search via a custom WHERE clause.

DB Replacer - Where Clause

The WHERE clause is used to extract only those records that fulfill specific criteria.

This field follows the default MySQL WHERE syntax. For instance, if you only want to search and replace in articles inside category with ID 5, you can do:

catid = 5

To search and replace in records that have an ID between 100 and 200, you can enter:

id > 100 AND id < 200

Or with string values:

name = "Mike" OR username LIKE "%mike%"