select ptidentifier, patientname, patientage, patientcreditcards
from patients with (nolock)
where ptidentifier like '%3026737%'
Let's say I have like 20 different patient identifier, in order to an like, I need to insert one at a time, is there way to do it combining in
and like
? So I can search multiple patientidentifiers at same time?
I use as because the patientidentifier is not exactly like the 302673, since that's all the info that was provided to me.