Ok, it appears the Top keyword doesn't work in SQLCE, nor does subselect
statements in the where clause. Is it possible to limit the number of
records returned by the query?
Two examples that don't work:
select top 1 * from setup order by createdate desc;
select * from setup where createdate = (select max(createdate) from setup);