I want to create a table width columns named 'text' and I don't know how to do this.
Is there any special character to get the name 'text' into a table by using CREATE TABLE ??
CREATE TABLE ABC ( text text(20))
Printable View
I want to create a table width columns named 'text' and I don't know how to do this.
Is there any special character to get the name 'text' into a table by using CREATE TABLE ??
CREATE TABLE ABC ( text text(20))
Text is a reserved word, you can't use it as is.