This is the sql code that I run on my postgresql database. It turns out to cause errors
INSERT INTO t1(
group1
)
VALUES
("GIRL''S 16'" AND LESS BIKE");
but if I delete the double quotes after 16', it works fine. So I wonder is there a way to keep the double quote inside but also insert successfully into the table?