【发布时间】:2014-06-27 19:16:01
【问题描述】:
小问题,限制子句在 Postgresql 中的位置是什么? 我想将行数限制为 10,但这样做时会出错;
From this_table x
join this_table y
on x.no = y.no
where x.no = '7'
Limit 10
group by x.location
order by x.location
它在“where”处或附近给我一个语法错误
(如果需要,我可以添加 select 语句。
【问题讨论】:
标签: sql postgresql where sql-limit