oracel数据库请用 rownum<5
select * from 你的表 where rownum<5
帆软的frdemo可以limit的呀。。
limit正常是可以用的 非用不了的话 可以给查询加序号 再进行筛选:
SELECT tt.* FROM
(SELECT (@i:=@i+1)pm,s.* FROM 表名 s,(SELECT @i:=0)t) tt
WHERE tt.pm < 100
;
自带的FRDemo是可以用limit的
finebd数据库,也是可以
FRDemo的sqlite是这个格式 select * from 表 limit 5
dinedb是 select top 1 * from 表
或者 select limit 0 2 * from 表
select top 10 * from table
select * from table limit 10