SQL 内连接 select 语句

发布于 2024-08-16 05:16:56 字数 440 浏览 9 评论 0原文

可能的重复:
选择语句上的 SQL 内部联接

我正在尝试对像这样的 select 语句:

select *
from (select* from bars  where rownum <= 10 )as tab1
inner join (select * from bars  where rownum <= 10 )as tab2
on tab1.close=tab2.close

我收到以下错误: ORA-00933 SQL 命令未正确结束 任何帮助将不胜感激,谢谢!

Possible Duplicate:
SQL Inner join on select statements

I am trying to make an inner join on a select statement like this:

select *
from (select* from bars  where rownum <= 10 )as tab1
inner join (select * from bars  where rownum <= 10 )as tab2
on tab1.close=tab2.close

and I get the following error:
ORA-00933 SQL command not properly ended
Any help would be appreciated, thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尽揽少女心 2024-08-23 05:16:56

“select”中的“select”和“”之间没有空格。

You don't have a space between "select" and "" in "select".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文