开发者

How to escape special words in oracle?

开发者 https://www.devze.com 2023-02-12 16:13 出处:网络
I have the following query: CREATE TABLE FOR_DELETE([DATE] DATE ) but it seems that there is a difference in escaping special words as开发者_如何学C INT, DATE and so on and its not like in SQL... H

I have the following query:

CREATE TABLE FOR_DELETE([DATE] DATE )

but it seems that there is a difference in escaping special words as开发者_如何学C INT, DATE and so on and its not like in SQL... How to escape special word?


Standard SQL would use double-quotes ("), and some implementations may use backticks (`). Out of the top of my head, Oracle will take the double-quotes.

0

精彩评论

暂无评论...
验证码 换一张
取 消