so I am trying to run a script like this one:
select id
from owner
where owner.name = "john's"
and I am getting this error: ERROR: column "john's" does not exist
.
Also I tried like this: where owner.name = 'john\'s'
, but it dit not work
Anyone knows how I can run a query like this one?