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.

i have this query from php:

mysql_query("INSERT INTO ".table_hack." (id,ip,count,lasttime) 
             VALUES (NULL,'".$ip."',1,NOW()) 
             ON DUPLICATE KEY UPDATE count=count+1, lasttime=NOW();");

As you can see im inserting a new record on the table_hack only if the Unique element is not present that in my case is ip. If the element is present the query updates de value of count in 1 and lasttime with the NOW() parameter.

I want also to know the value of count in the same query, it is possible?. I know that i could make another query but i will like to make it just in one (if is possible). Thanks for any help!

share|improve this question
1  
Any particular reason you want it to be 1 query? Have you considered transactions? – Folkert van Heusden Oct 13 '11 at 7:39
Just curiosity and optimization. – DomingoSL Oct 13 '11 at 7:47
The only optimalization I can think of is to check the affected_rows. If it returns 2 you know the count was updated so you can query for the count. If it returns 1 it only inserted the record so you know count=1 and don't have to do the select query. – Nin Oct 13 '11 at 7:55
What optimization? Got any particular problem? – Your Common Sense Oct 13 '11 at 8:37
Good to know this isn't possible but I'm surprised that everyone is curious why the OP would want one query. One query is faster and that matters at scale. – Emile Apr 13 '12 at 5:18

3 Answers

up vote 0 down vote accepted

Nope, you can't.
Also, I see no reason for such a desire.

To me, it's interesting phenomenon. Such questions are quite often on Stackoverflow and I am curious why people so eager to combine queries into one call. And even more surprising fact that everyone are limiting themselves with just 2 queries, and nobody asks how to combine ALL the queries from the script into one mysql call.

share|improve this answer
Do these people shove a cake into the oven with the icing sugar - juswt incase the cake comes out iced? – Ed Heal Oct 13 '11 at 8:39

You can't combine an INSERT and SELECT query so you'll have to run two queries. Why would it be a problem to use two queries?

share|improve this answer

You can not do it with standard php mysql functions. You can do it with Mysqli driver and method multi_query(), but it will be a 2 queries whatever.

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.