gpt4 book ai didi

sql从 View 和表中选择

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

我有一个选择查询,我想在其中对 View 和另一个表进行连接。
View 工作正常,表格也是如此,分别。但是当我尝试做类似的事情时:

select VIEW.col1, VIEW.col2
from VIEW, TABLE
where VIEW.col1 = TABLE.col1

我收到 The multi-part identifier "VIEW.col1" could not be bound.
语法错误,还是 View 不允许?

最佳答案

这应该工作

select v.col1, t.col2
from VIEW v, TABLE t
where v.col1 = t.col1

关于sql从 View 和表中选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12406592/

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