On Fri, 23 Mar 2001, Gyan wrote:
> Greetings!
> Kindly lemme know how do u sort a table on some field...please talk about the command that does it.
> Thanx.
> Gyan Ranjan
>
using the ORDER BY clause in a query. eg
SELECT col1,col2,col3 FROM tablename ORDER BY col1;
You can get info on how to use sql from the postgresql documentation
(http://www.postgresql.org), but best would be if you'd just read a
book about sql.
- Einar Karttunen