Google Sheets Query Language: escape apostrophe
Try using double quotes around the word with the apostrophe
"SELECT * WHERE Col2 = ""Woman's blabla: blablabla"""
If the string you're trying to match is in a cell, try surrounding the cell name with """"
like so:
=QUERY(Foo!A:B,"select A where B = " & """" & A1 & """" & "")