Jump to content

darthjones

New Members
  • Posts

    1
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

darthjones's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I have a table called names with the following fields - id, last_name, first_name. I want to get the last 10 entries based on id and then arrange the results based on last_name. I can do both separately but I can't figure out how to do them at the same time. Can both be done in one query? Basically, I want to combine the following - [code]select id from names order by id desc limit 10; select last_name, first_name from names order by last_name;[/code]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.