我遇到了类似的SQL查询
select "hello" from "foo"."bar"
我发现在Oracle中我们可以使用带引号和不带引号的标识符:
Database Object Names and Qualifiers
… A quoted identifier begins and ends with double quotation marks (“). If you name a schema object using a quoted identifier,then you must use the double quotation marks whenever you refer to that object…
我问DBA他们告诉我有一个名字栏的表但不是“bar”
这是为什么?
该表名为bar而不是BAR或“bar”,但因为它是小写的,所以只能使用双引号引用它:
原文链接:https://www.f2er.com/oracle/205684.htmlselect * from bar; -- will fail select * from "bar"; -- will succeed
道德是:永远不要创建像这样的表!