Creating a table with a double quote to escape the real double quote doesn't seem to work in Oracle's SQL syntax:
CREATE TABLE "MyTable" ("Col""umn 1" varchar(168));
The above fails. Is there any way to escape the double quote to make 'Col"umn 1'?
Creating a table with a double quote to escape the real double quote doesn't seem to work in Oracle's SQL syntax:
CREATE TABLE "MyTable" ("Col""umn 1" varchar(168));
The above fails. Is there any way to escape the double quote to make 'Col"umn 1'?