Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How would I do something like this? I've been trying to figure this out for about an hour. Very frustrating. Any help would be awesome!

share|improve this question

3 Answers

You could use a subselect:

SELECT row 
FROM table 
WHERE id=(
    SELECT max(id) FROM table
    )

Note that if the value of max(id) is not unique, multiple rows are returned.

If you only want one such row, use @MichaelMior's answer,

SELECT row from table ORDER BY id DESC LIMIT 1
share|improve this answer
THANKS YOU SOOO MUCH :D:D:D:D im so happy C: – Victor Kmita Sep 30 '11 at 0:56

You could also do

SELECT row from table ORDER BY id DESC LIMIT 1;
share|improve this answer
To specifically do what the OP is asking, I'd do this. But the other answers do provide a better education on SQL structure :) – MatBailie Sep 30 '11 at 1:05
@Dems How so? No explanations are given on any other answer? I of course am guilty of that as well :( – Michael Mior Sep 30 '11 at 4:52
Just that other questions correct the syntax without refactoring the logic. So, the OP learns how to state that specific sql correctly. – MatBailie Sep 30 '11 at 7:26
Fair point :) Although other answers are arguably still correcting the logic. – Michael Mior Sep 30 '11 at 11:47
SELECT * FROM table WHERE id=(SELECT MAX(id) FROM TABLE)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.