Skip to main content
Hi All,

 

 

can anyone confirm/deny if the TOP function should work in the InlineQuerier, as in...

 

 

Select TOP 10 * from table1

 

 

I am having no joy so far

 

 

thanks
Hi,

 

 

The InlieQuerier uses SQLite database internally, and SQLite doesn't support "TOP" clause. You can use "LIMIT"" instead.

 

-----

 

select * from table1 limit 10

 

 

Takashi
Thanks Takasahi, thats what I needed...

Reply