SitePoint Sponsor

User Tag List

Results 1 to 6 of 6

Thread: retrieve 1st record

  1. #1
    SitePoint Wizard lukeurtnowski's Avatar
    Join Date
    Mar 2003
    Location
    Coronado
    Posts
    1,484
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    retrieve 1st record

    I'm trying to figure out how to create a select statement to retrieve a record from a set of records with the lowest primary key?
    Any Takers?
    "Oh, and Jenkins--apparently your mother died this morning."

  2. #2
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,456
    Mentioned
    34 Post(s)
    Tagged
    1 Thread(s)
    a "set of records"??? do you mean a table?
    Code:
    SELECT columns
      FROM daTable
     WHERE pk = ( SELECT MIN(pk) FROM daTable )
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  3. #3
    SitePoint Wizard lukeurtnowski's Avatar
    Join Date
    Mar 2003
    Location
    Coronado
    Posts
    1,484
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Yea, like if I return all records of a certain email, the how do I only select the record with the lowest primary key?
    Thanks
    "Oh, and Jenkins--apparently your mother died this morning."

  4. #4
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,456
    Mentioned
    34 Post(s)
    Tagged
    1 Thread(s)
    Quote Originally Posted by lukeurtnowski View Post
    Yea, like if I return all records of a certain email, the how do I only select the record with the lowest primary key?
    Thanks
    see post #2 in this thread
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  5. #5
    SitePoint Wizard lukeurtnowski's Avatar
    Join Date
    Mar 2003
    Location
    Coronado
    Posts
    1,484
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    thx. (nice car!)
    "Oh, and Jenkins--apparently your mother died this morning."

  6. #6
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,456
    Mentioned
    34 Post(s)
    Tagged
    1 Thread(s)
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •