Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to INSERT some data into a table but only when the subquery COUNT is > 0.

This is what I have so far.

INSERT INTO users_friends (userId, friendId) VALUES (77, 100) 
WHERE 
(SELECT COUNT(id) FROM users WHERE email = 'a@g.com') > 0

Both queries work independently FYI.

This should be a simple fix hopefully. Cheers

share|improve this question

3 Answers

up vote 5 down vote accepted

SQLFiddle demo if there are records 'a@g.com'

SQLFiddle demo if there are NOT records 'a@g.com'

INSERT INTO users_friends (userId, friendId) 
SELECT 77, 100 
FROM users WHERE email = 'a@g.com' LIMIT 1;

Another way would be:

INSERT INTO users_friends (userId, friendId) 
SELECT 77, 100 
FROM dual
WHERE EXISTS
      ( SELECT * FROM users WHERE email = 'a@g.com' ) ;
share|improve this answer
+1 for correcting me...:-) – Sashi Kant Feb 12 at 14:00
This works, cheers! – Andre Feb 12 at 14:11

Try this::

INSERT INTO users_friends (userId, friendId) 
(SELECT 77, 100  FROM users GROUP BY email HAVING email= 'a@g.com' and count(id)>0)
share|improve this answer
But in this case if count for example = 4 then 4 records (77, 100) will be inserted into table. – valex Feb 12 at 13:50
@valex: Thanks for correcting me, plz check now – Sashi Kant Feb 12 at 13:52
That's an awesome way around it! Cheers – Andre Feb 12 at 13:53
Thanks bro..... – Sashi Kant Feb 12 at 13:54
Thanks for the answer! – Andre Feb 12 at 14:12
INSERT INTO users_friends (userId, friendId) 
SELECT 77, 100 FROM users WHERE email = 'a@g.com'
GROUP BY email
HAVING COUNT(id) > 0
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.