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
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
The InlieQuerier uses SQLite database internally, and SQLite doesn't support "TOP" clause. You can use "LIMIT"" instead.
-----
select * from table1 limit 10
Takashi