SQL 内连接 select 语句
可能的重复:
选择语句上的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“select”中的“select”和“”之间没有空格。
You don't have a space between "select" and "" in "select".