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 6861605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:33:22+00:00 2026-05-27T02:33:22+00:00

For some reason the code below is returning the results, put not in the

  • 0

For some reason the code below is returning the results, put not in the correct order.

Anyone have any ideas why as I have been looking at it for a couple of hours and have yet to spot the problem:

USE [storeboard]
GO
/****** Object:  StoredProcedure [sbuser].[sp_MemberMailList ]    Script Date: 11/25/2011 12:04:15 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROC [sbuser].[sp_MemberMailList ]
    @MemberMailID bigint = null,
    @FromMemberID bigint = null,
    @ToMemberID bigint = null,
    @Subject varchar(150) = null,
    @Message varchar(8000) = null,
    @FromDeletedFlag bit = null,
    @ToDeletedFlag bit = null,
    @FromArchivedFlag bit = null,
    @ToArchivedFlag bit = null,
    @ReadFlag bit = null,
    @SQL nvarchar(4000) = null,
    @SortField varchar(100) = null,
    @SortOrder varchar(25) = null,
    @NotificationSent bit = null,
    @MemberID bigint = null,
    @OnHold bit = 0,
    @SpecialMail varchar(1) = 'N',
    @PageSize float = null,
    @PageNum int = 1,
    @TotalPages float = null,
    @StartDate datetime = null,
    @EndDate datetime = null,
    @MODE varchar(50)

AS

IF @MODE = 'INBOX-MAIL-NOSORT'
    BEGIN
        SELECT @TotalPages = CEILING(COUNT(*)/@PageSize)
        FROM MemberMail
        WHERE ToMemberID = @ToMemberID
        AND ToDeletedFlag = 0
        AND OnHold = 0
        AND ToArchivedFlag = 0
        AND FromDeletedFlag = 0;

        WITH InMailsCDDESC AS
        (

            SELECT ROW_NUMBER() OVER(ORDER BY a.CreateDate DESC) AS RowNum,
            a.MemberMailID,     -- 1
            a.FromMemberID,     -- 2
            a.Subject,          -- 3
            a.CreateDate,       -- 4
            b.UserName,         -- 5
            a.ToReadFlag,       -- 6
            b.Firstname,        -- 7
            b.Lastname,         -- 8
            b.MemberDisplayName AS DisplayName, -- 9
            @TotalPages AS TotalPages -- 10
            FROM MemberMail a
            INNER JOIN Member b ON b.MemberID = a.FromMemberID
            WHERE a.ToMemberID = @ToMemberID
            AND a.ToDeletedFlag = 0
            AND a.OnHold = 0
            AND a.ToArchivedFlag = 0
            AND a.FromDeletedFlag = 0
        )
        SELECT * FROM InMailsCDDESC
        WHERE RowNum BETWEEN (@PageNum - 1) * @PageSize + 1 AND @PageNum * @PageSize
    END

Any help you can provide would be greatly appreciated.
Many thanks,
Paul

  • 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-27T02:33:22+00:00Added an answer on May 27, 2026 at 2:33 am

    If you want a specific order you need to use an ORDER BY in your SELECT statement.

    As you don’t specify an ORDER BY in your SELECT statement, the database is free to return the rows in any order it likes.

    Edit

    I’m adding Lamak’s comment to make this answer complete:

    The ORDER BY in the definition of the window for row_number() is only used to to calculate result of the row_number() function. It is not used to sort the overall result (which is part of the beauty of windowing functions)

    To order by the calculated row_number() you need to add an ORDER BY RowNum to the final SELECT statement.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello I have the code below that for some reason is not working: I
See code below, for some reason it only works when I put a breakpoint
For some reason the code below isn't centering my Unordered List (I have the
For some reason the code below is not adding annotations to the map view.
For some reason this PHP code below will not work, I can not figure
for some reason the below code is outputting the correct ticker in the location
For some reason, this code does not actually draw my bitmap file... or show
I have the following code: visitSite.hidden = YES; For some reason, when I click
For some reason, the code below fails on the second line with run-time error
For some reason the code below when I iterate through some urls, curl_exec never

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.