Re: please give me select sqls examples to distinct these!

From: Rob Sargent <robjsargent(at)gmail(dot)com>
To: jacktby(at)gmail(dot)com
Cc: pgsql-general <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: please give me select sqls examples to distinct these!
Date: 2022-10-25 14:06:25
Message-ID: 8E137936-5D93-49FF-93A3-EB4E97D3416C@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> On Oct 25, 2022, at 7:55 AM, jacktby(at)gmail(dot)com wrote:
>
> 
>
> typedef enum SetOperation
> {
> SETOP_NONE = 0,
> SETOP_UNION,
> SETOP_INTERSECT,
> SETOP_EXCEPT
> } SetOperation;
> jacktby(at)gmail(dot)com

Please use just text.
What ‘dialect’ are using? In Postgres
0: select * from table
1: select * from table union select * from table is same shape
2: select * from table join table b on Id = idb
3: select * from table except select * from tableb

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message jacktby@gmail.com 2022-10-25 14:10:26 Re: Re: please give me select sqls examples to distinct these!
Previous Message jacktby@gmail.com 2022-10-25 13:54:58 please give me select sqls examples to distinct these!