so I'm trying to run a script like this:
select id from owner where owner.name = "john's"
and I get this error: ERROR: column "john's" does not exist .
Also I tried like this: where owner.name = 'john\'s' , but it does not work
Does anyone know how I can run such a query?
source share