Viewing 4 posts - 1 through 4 (of 4 total)
This is one of the many things we cannot do in SQL Server CE. Nested SELECTs are legal in SQL Server (including Express), but not in SSCE.
April 2, 2009 at 9:06 am
If you aren't using SqlServer Compact Edition you can use TOP to limit the results returned:
SELECT TOP(10) * from ProductTable WHERE ProdID > xxxMaxLastProdID ORDER BY ProdID ASC
This returns...
April 2, 2009 at 7:04 am
From "SQL Server 2005 Compact Edition Books Online"
"Queries that can typically be run on SQL Server Compact Edition can also run on Microsoft SQL Server; however, many of the features...
April 2, 2009 at 6:11 am
Stored procedures are not available for SQL Server CE.
But you already knew that.
April 1, 2009 at 12:40 pm
Viewing 4 posts - 1 through 4 (of 4 total)