Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6784625
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:01:06+00:00 2026-05-26T17:01:06+00:00

I want to know how to retrieve results in a SQL query doing some

  • 0

I want to know how to retrieve results in a SQL query doing some logic comparison with the next or previous rows. I’m using PostgreSQL.

Example
Supposing I have a table in my database with two attributes (ordered position and random numbers), I want to retrieve the odd numbers that are between even numbers. How can I do this?

The real usage
I want to find words that are between two another words which have the category NAME (and the word is not a name). The ordering is provided by sentence and position.

Edit
I want to know if the Window function of PostgreSQL are best solution for this kind of problem than doing queries. I heard about them, but never used.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T17:01:07+00:00Added an answer on May 26, 2026 at 5:01 pm

    This is my solution using WINDOW functions. I used the lag and lead functions. Both returns a value from a column from a row in offset from the current row. lag goes back and lead goes next in the offset.

    SELECT tokcat.text
    FROM (
        SELECT text, category, chartype, lag(category,1) OVER w as previousCategory, lead(category,1) OVER w as nextCategory
        FROM token t, textBlockHasToken tb
        WHERE tb.tokenId = t.id
        WINDOW w AS (
            PARTITION BY textBlockId, sentence
            ORDER BY textBlockId, sentence, position
        )
    ) tokcat
    WHERE 'NAME' = ANY(previousCategory)
    AND 'NAME' = ANY(nextCategory)
    AND 'NAME' <> ANY(category)
    

    Simplified version:

    SELECT text
    FROM (
        SELECT text
              ,category 
              ,lag(category) OVER w as previous_cat
              ,lead(category) OVER w as next_cat
        FROM   token t
        JOIN   textblockhastoken tb ON tb.tokenid = t.id
        WINDOW w AS (PARTITION BY textblockid, sentence ORDER BY position)
        ) tokcat
    WHERE  category <> 'NAME'
    AND    previous_cat = 'NAME'
    AND    next_cat = 'NAME';
    

    Major points

    • = ANY() is not needed, the window function returns a single value
    • some redundant fields in the subquery
    • no need to order by columns, that you PARTITION BY – the ORDER BY applies within partitions
    • Don’t use mixed case identifiers without quoting, it only leads to confusion. (Better yet: don’t use mixed case identifiers in PostgreSQL ever)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am making an SQL query in which I want to get some results
want to know why String behaves like value type while using ==. String s1
I want to know what are the options to do some scripting jobs in
I want to know how does the SQL Server know what @p# is in
I am trying to do an SQL query on two tables to retrieve multiple
Want to know what the stackoverflow community feels about the various free and non-free
I want to know what a virtual base class is and what it means.
I want to know what exactly is the sequence of calls that occurs when
I want to know which tool can be used to measure the cyclomatic complexity
I want to know how to use variables for objects and function names in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.