以下内容仅包括 Oracle SQL 与 MySQL 不同之处,其余请参考 MySQL Doc
4. Query (Select)
4.1 Overall
select col1
from table1
(where) condition
(group by) col2
(having) condition
(order by) sorting
4.2 Components
(6) Limit
不同于 MySQL,Oracle SQL 并不使用 limit
关键字,而是使用 rownum
+ where
来实现类似功能
-- MySQL
select col1 from table1 limit n;
-- Oracle SQL
select col1 from table1 where rownum <= n;
Document Information
- Author: Zeka Lee
- Link: https://zhekaili.github.io/0009/03/03/OracleSQL-Doc/
- Copyright: 自由转载-非商用-非衍生-保持署名(创意共享3.0许可证)