> > describe CL0420;
> > +----------+-------------+------+-----+---------+-------+
> > | Field    | Type        | Null | Key | Default | Extra |
> > +----------+-------------+------+-----+---------+-------+
> > | ID       | int(11)     | YES  |     | 0       |       |
> > | Producer | char(255)   | YES  | MUL | NULL    |       |
> > | Varietal | char(255)   | YES  | MUL | NULL    |       |
> > | Vineyard | char(255)   | YES  | MUL | NULL    |       |
> > | Year     | char(50)    | YES  |     | NULL    |       |
> > | Size     | char(255)   | YES  |     | NULL    |       |
> > | Average  | int(11)     | YES  |     | 0       |       |
> > | Sold     | smallint(6) | YES  |     | NULL    |       |
> > +----------+-------------+------+-----+---------+-------+
> >
> > I'd like to sort on Producer, Varietal, Vineyard
> >   (in that order)
>
> SELECT * FROM CL0420 ORDER BY Producer, Varietal, Vineyard;
>
> That *should* work ?

<query>



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to