Return rows

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • edortiz
    New Member
    • Oct 2006
    • 4

    Return rows

    I know there is a statement to
    RETURN TOP (number of rows) in a databse

    How can I return the Bottom (number of rows)?
  • PEB
    Recognized Expert Top Contributor
    • Aug 2006
    • 1418

    #2
    By applying the inverse sort :)
    ;)
    Instaed ORDER BY Ascending

    Use Order BY DESC....


    And it's OK!

    :)

    Comment

    • edortiz
      New Member
      • Oct 2006
      • 4

      #3
      Thank you...

      Comment

      Working...