MySQL Forums
Forum List  »  Newbie

Re: How to select just one row / given column?
Posted by: Umesh Shastry
Date: May 14, 2005 05:30AM

Try this..

SELECT *
FROM uktable
WHERE description = 'altavista'
GROUP BY domain
ORDER BY id


or just

SELECT *
FROM uktable
WHERE description = 'altavista'
GROUP BY domain

Regards,
Umesh Shastry
http://www.blogger.com/profile/02551756983528645221

Options: ReplyQuote


Subject
Written By
Posted
Re: How to select just one row / given column?
May 14, 2005 05:30AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.