在 Oracle 中合并
如何在 Oracle 中合并表以及它的语法是什么?
How to coalesce a table in oracle and What is it's syntax ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 Oracle 中合并表以及它的语法是什么?
How to coalesce a table in oracle and What is it's syntax ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
我最初怀疑您是在询问合并表空间:
这将连续的范围组合成更大的范围。请参阅 Oracle 10G 文档
但现在我想也许您正在寻找的是
中详细描述的 Thiis这篇 Oracle 杂志文章。
I originally suspected that you were asking about coalescing tablespaces:
This combines contiguous extents into larger extents. See Oracle 10G Docs
But now I think perhaps what you are looking for is
Thiis described in detail in this Oracle Magazine article.
coalesce 是一个函数,它接受两个(或更多)参数并返回第一个不为 null 的参数。
给定一个带有可为空列(例如,
Age
)的表,您可以编写以下内容:coalesce
is a function that takes two (or more) parameters and return the first that is not null.Given a table with a nullable column called, say,
Age
, you could write the following:如果我明白你想要做什么,你需要:
然后将其移回:
If I understand what you're trying to do, you'll need to:
then move it back:
本文档非常清楚地解释了如何我们使用合并。
This documentation is very clear on explaining how we use COALESCE.