I have 2668 rows in my table.
select count(distinct ID) from mytable;
gives the following results: 2668
However, when I use:
select ID from uniprot;
I only get 1000 rows returned, what could be the problem?
I use windows xp 1 GB ram, and mysql 4.0.18
Any help is appreciated.
select count(distinct ID) from mytable;
gives the following results: 2668
However, when I use:
select ID from uniprot;
I only get 1000 rows returned, what could be the problem?
I use windows xp 1 GB ram, and mysql 4.0.18
Any help is appreciated.