gpt4 book ai didi

sql - 在oracle sql中加入sql View

转载 作者:行者123 更新时间:2023-12-01 11:57:59 25 4
gpt4 key购买 nike

如何使用 sql 连接 View ?我现在正在使用 Oracle?

SQL View 1

CREATE VIEW florence_staff AS
SELECT *
FROM staff
WHERE libname ='florence'

SQL View 2

CREATE VIEW alexandria_staff AS
SELECT *
FROM staff
WHERE libname ='alexandria'

如果您明白我的意思,我这样做是为了检查碎片是否正确。谢谢:))

最佳答案

这些将是不同的结果集,因为 libname 不同,因此使用 UNION ALL 而不是 UNION

SELECT * FROM florence_staff
UNION ALL
SELECT * FROM alexandria_staff

关于sql - 在oracle sql中加入sql View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4316277/

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