SQL内连接select语句

前端之家收集整理的这篇文章主要介绍了SQL内连接select语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正试图在这样一个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命令没有正确结束
任何帮助将不胜感激,谢谢!

解决方法

从您的查询删除
select *
from (select* from bars  where rownum <= 10 ) tab1
inner join (select * from bars  where rownum <= 10 ) tab2
on tab1.close=tab2.close
原文链接:https://www.f2er.com/mssql/81600.html

猜你在找的MsSQL相关文章