2
votes
SQL select where repeating, but distinct on another column.
SELECT MIN(uid) as uid, key, email
FROM Keys k INNER JOIN
(SELECT email FROM KEYS GROUP by email HAVING COUNT(email) > 1 ) k2
ON k.email = k2.email
GROUP BY key, email
HAVING CO …
0
votes
What’s the optimal solution for tag/keyword matching?
Well maybe something like the follwing:
select p.productId, p.name, r.rank
from products p inner join (
/* this inner select should bring in only products that have at least one key …
0
votes
A difficult SQL query: tag popularity for models with complex associations
I may be missing something obvious but since you have "If someone tags a comment to a post, it fills in both blog_post_id and blog_comment_id", the following sql should do the trick. I'm assumi …
0
votes
SQL Update Multiple Fields FROM via a SELECT Statement
You should be able to do something along the lines of the following
UPDATE s
SET
OrgAddress1 = bd.OrgAddress1,
OrgAddress2 = bd.OrgAddress2,
...
DestZip = bd.DestZip …
