Alternatively, use the IF() function --

SELECT IF(captain=0, "C", "") from stats where captain > 0 and number = '23'
group by number;

Or something similar.

Nick


----- Original Message -----
From: "Insanely Great" <[EMAIL PROTECTED]>
To: "Alex Behrens" <[EMAIL PROTECTED]>; "MYSQL" <[EMAIL PROTECTED]>
Sent: Monday, November 25, 2002 8:25 AM
Subject: Re: displaying a letter based on a query value


> Greetings...
>
> I thin you need to look into the enum datatype. It stores data as integer
> but when queried it will return data in text.
>
> Rgds
> Insane
>
> SQLyog - The Definitive GUI for MySQL
> http://www.webyog.com/sqlyog/download.html
>
> ----- Original Message -----
> From: "Alex Behrens" <[EMAIL PROTECTED]>
> To: "MYSQL" <[EMAIL PROTECTED]>
> Sent: Monday, November 25, 2002 3:54 AM
> Subject: displaying a letter based on a query value
>
>
> > Hey All,
> >
> > I'm working on a site that displays all the players on my hockey team
and
> I
> > want to the page to indicate the captains automatically. Right now im
> using
> > the following query to display all the captains, however, captains are
> > indicated by a 1, is it possible to display a "C" when a 1 is found? How
> > would i do this?
> >
> > select captain from stats where captain > 0 and number = '23' group by
> > number;
> >
> > this returns a 1 for any player with the number that matches being a
> > captain, however it display a 1 is it possible to make that 1 displayed
as
> a
> > C on my page?
> >
> > mysql
> >
> >
> > Thanks!
> > --------------------------------------------
> > -Alex "Big Al" Behrens
> > E-mail: [EMAIL PROTECTED]
> > Urgent E-mail: [EMAIL PROTECTED] (Please be brief!)
> > Phone: 651-482-8779
> > Cell: 651-329-4187
> > Fax: 651-482-1391
> > ICQ: 3969599
> > Owner of the 3D-Unlimited Network:
> > http://www.3d-unlimited.com
> > Send News:
> > [EMAIL PROTECTED]
> >
> >
> >
> > ---------------------------------------------------------------------
> > 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
> >
>
>
> ---------------------------------------------------------------------
> 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


---------------------------------------------------------------------
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