in reply to Exact Match

I might be missing something here, but I think your SQL statement is incorrect. Shouldn't it be

select * from description_table where description like '%Robert Jr.%'
Update: Or even, since you want an EXACT match:
select * from description_table where description = 'Robert Jr.'