Re: Not able to find an alternative for SELECT TOP n WITH TIES in postgresql which is available in sql server.

From: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>
To: "MAJUMDER, SAYAN" <sayan(dot)a(dot)majumder(at)capgemini(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Not able to find an alternative for SELECT TOP n WITH TIES in postgresql which is available in sql server.
Date: 2017-05-20 00:14:50
Message-ID: 20170520001450.4ms3d3iqkx4c6ehh@alvherre.pgsql
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Hi Sayan,

I have CCed the pgsql-admin list here, in the hope that somebody might
reply (full question below). I think the answer to your question is to
use a window function.

Please make sure to always write to pgsql-admin(at)postgresql(dot)org, not the
"-owner" address. Otherwise, your message never reaches the list.

MAJUMDER, SAYAN wrote on April 24th 2017:

> Hi,
> I am new to postgresql and we have a query in sql server that is SELECT TOP n WITH TIES column_name from table_name.
> This clause is used to retrieve all similar rows to a base result set.
> I am not able to find any similar clause in postgresql.
>
> Example in sql server:-
> We have a table with 6 entries 1 to 4 and 5 twice.
>
> SELECT TOP 5 WITH TIES *
> FROM MyTable
> ORDER BY ID;
>
> This will returns 6 rows, as the last row is tied (exists more than once.)
>
> Whereas
>
>
> SELECT TOP 5 *
>
> FROM MyTable
>
> ORDER BY ID;
>
> This will returns 5 rows as the last row is tied.
>
>
> ---------------------------------------------------------------------------------------------------------------------------------------------------------------
> [Email_CBE.gif]Thanks and regards,
> Sayan Majumder
> CSD | AppsTwo | Analyst A4
> Capgemini Technology Services India Limited| Kolkata |
> Tel.: +91 8584022251/ Ext.:- 3339161
> www.capgemini.com<http://www.capgemini.com/>
> People matter, results count.
>
>
> This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.

--
Álvaro Herrera https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message David G. Johnston 2017-05-20 00:32:47 Re: Re: Not able to find an alternative for SELECT TOP n WITH TIES in postgresql which is available in sql server.
Previous Message Peter Eisentraut 2017-05-19 18:53:13 Re: error installing oracle_fdw extension