Chuck,
Monday, April 08, 2002, 6:49:20 PM, you wrote:

CPP> Ok, I know I am going to get yell about this but how can I do an SQL and
CPP> only show to fields from a table. For example I only like to see the names
CPP> and birthday? Or will as so all fields for a given table.

If you want to see data from certain columns you should specify column
names in the SELECT statement, for example:
      SELECT name, birthday from table_name;
Look at:
     http://www.mysql.com/doc/R/e/Retrieving_data.html
     http://www.mysql.com/doc/S/E/SELECT.html
     
CPP> Chuck Payne





-- 
For technical support contracts, goto https://order.mysql.com/
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Egor Egorov
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
       <___/   www.mysql.com



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