I'm evaluating HXTT 4.0, I've myTable with 15000 records, if I use :
select field1, field2, field3 from myTable
I can see all rows (records)...
But if I use :
select field1, field2, field3 from myTable ORDE BY field2
I only can see some first records,
And if I use
select field1, field2, field3 from myTable ORDE BY field2 DESC
I can see only last records....
Is this an eval limitation???
Thanks
|
|
Yeah. evalu SELECT queries return the first 1000 rows in the result set. It's descripted at here.
|