Re: how to do this select? - Mailing list pgsql-general

From Craig Ringer
Subject Re: how to do this select?
Date
Msg-id 499D00ED.5090207@postnewspapers.com.au
Whole thread Raw
In response to how to do this select?  (Yi Zhao <yi.zhao@alibaba-inc.com>)
Responses Re: how to do this select?  (Yi Zhao <yi.zhao@alibaba-inc.com>)
Re: how to do this select?  ("A. Kretschmer" <andreas.kretschmer@schollglas.com>)
List pgsql-general
Yi Zhao wrote:

> I want to get the only 2 rows(limit or random) if the column "b" have
> the same value. so, the result of the above is
> a | b
> ---+---
> X | A
> X | A
> D | B
> H | B
> P | C
>
> how to do that, thanks all!
>
>

I don't understand what you want based on your description and your
example results. What do you mean by "if the column `b' have the same
value" ?


By the way, when you're posting this kind of question it's really
helpful to send SQL code to set up your test environment. For example,
if you had sent:


CREATE TABLE ab (a text, b text);

INSERT INTO ab (a,b) VALUES
('X','A'),('X','B'),('Y','A'),('D','B'),('H','B'),('E','B'),('D','B'),('P','C');



... then it would've saved the hassle of assembling a test table.

--
Craig Ringer

pgsql-general by date:

Previous
From: Mike Christensen
Date:
Subject: Re: Removing a corrupt database by hand
Next
From: Yi Zhao
Date:
Subject: Re: how to do this select?