gpt4 book ai didi

sql - Oracle SQL 语法 : Quoted identifier

转载 作者:行者123 更新时间:2023-12-04 22:00:37 25 4
gpt4 key购买 nike

我遇到了看起来像的 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"但因为它是小写的,你只能 引用 它使用双引号:

select * from bar; -- will fail

select * from "bar"; -- will succeed

寓意是: 从不创建这样的表!

关于sql - Oracle SQL 语法 : Quoted identifier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6468337/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com