RE: [sqlite] Sorted index

2007-06-05 Thread Tom Briggs
s@sqlite.org > Subject: Re: [sqlite] Sorted index > > B-Tree indices are in sorted sequence. Just raise an index > on the column. > > [EMAIL PROTECTED] wrote: > > > > > > I would like to maintain a sorted list of ~3000 entries. > > I know that I can c

Re: [sqlite] Sorted index

2007-06-05 Thread John Stanton
B-Tree indices are in sorted sequence. Just raise an index on the column. [EMAIL PROTECTED] wrote: I would like to maintain a sorted list of ~3000 entries. I know that I can create a table and the SELECT from it with the ORDER BY clause in order to sort it. However I do not want the overhead