Tag Archive for 'sql'

INNER JOIN syntax

It's too bad that ON (column = column) comes after and not before INNER JOIN table, because if it came before it would make for much cuter code formatting:

SQL:
  1. SELECT DISTINCT $columns
  2. FROM
  3.   $this->comments
  4.     ON (comment_post_ID = post_id) INNER JOIN
  5.   $this->post2cat
  6.     ON (category_id = cat_ID) INNER JOIN
  7.   $this->categories
  8. WHERE
  9.   blog = '$blog' AND
  10.   $criteria

SQL CHALLENGE

Arrrrre you readyyyyy--- for an es Q elllllllll--- CHALLENGE!!!!!

I have a user table, let's say with name and zipcode. I can do the following successfully:

  1. Select a random user with SELECT * FROM users ORDER BY RAND(UNIX_TIMESTAMP()) LIMIT 1
  2. Select all users, with only 1 from each zipcode, using SELECT * FROM users GROUP BY zipcode update: I simplified this as per Danny's suggestion below

The only problem is, in case 2, it's always the same user per-zipcode. I want to randomize which in the grouping gets pulled out. I would prefer that the solution not involve joining the table on itself, although if I don't find another solution I will probably whip up the self-join solution just for fun.




Close
Powered by ShareThis