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

From: "jacktby(at)gmail(dot)com" <jacktby(at)gmail(dot)com>
To: "Rob Sargent" <robjsargent(at)gmail(dot)com>
Cc: pgsql-general <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: Re: please give me select sqls examples to distinct these!
Date: 2022-10-25 14:10:26
Message-ID: 202210252210256635796@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

Browse pgsql-general by date

  From Date Subject
Next Message jacktby@gmail.com 2022-10-25 14:54:37 can you give me a sql example to explain this?
Previous Message Rob Sargent 2022-10-25 14:06:25 Re: please give me select sqls examples to distinct these!