I have this SQL:
Select * from Table1
Where instructor_name in (@Instructors)
The problem is that the instructor name in the table is in the format LastName, FirstName. I'm not sure how to handle the comma so that I can find "Schmoe, Joe" in the database. Does anyone have an idea how I can do so?
Thanks!