Select COLUMN_name
from TABLE_name
where COLUMN NAME = 'something's'
While executing this query in PostgreSQL, it is showing an error as like below, syntax error at or near "S".
Select COLUMN_name
from TABLE_name
where COLUMN NAME = 'something's'
While executing this query in PostgreSQL, it is showing an error as like below, syntax error at or near "S".
The apostrophe in KEPLER'S is terminating the string early. Escape it, and proofread next time.
Select CONCEPTNAME from KM_CONCEPT_MAST where CONCEPTNAME='KEPLER''S LAWS OF PLANETARY MOTION'