【发布时间】:2019-09-26 15:27:04
【问题描述】:
select round(long_w,4)
from station
where lat_n < 137.2345
order by lat_n desc
limit 1;
这个查询给出
- 第 1 行出现错误:ORA-00933:SQL 命令未正确结束
修复这个错误
【问题讨论】:
-
ORA-00933 是一条常规消息,表明我们的 SQL 语句至少包含一个语法错误。解决方案是查阅 Oracle SQL 参考。有很多关于有效语法的指导。例如,here are examples of row limiting queries。值得收藏the docs site for future reference。