190000 is not a big deal for a table (thay can handle millons of rows), just do a:
SELECT Key where id=someid
If you get more than one row (trough mysql_num_rows), then it's a duplicate entry.
if you have duplicate base data, set the id column as unique or primary key, duplicate insertion will fail
Jorge