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 2 tables i.e. table 1 calls game and table 2 calls game_medias

structure table 1 (game)

-id
-genre_id
-title
-created

etc.

structure table 2 (game_medias)

-id
-game_id
-thumb

etc

example query:

select g.id,g.genre_id,g.title, gm.* 
from games g inner join game_medias as gm 
group by rand(g.id) limit 8;

is it possible to make a query with a extra like " where g.id = '2' " - get the genre_id from it and get into the random 8 only "items" with this genre_id ? i'm not sure if the join is the right solution - maybe someone knows a better way?

regards

share|improve this question
Describe what you are trying to query as it may be easier to start from scratch. – Jason McCreary Sep 13 '11 at 20:57
Your JOIN doesn't have an ON clause. – Rocket Hazmat Sep 13 '11 at 21:00
order by random is is slow – ajreal Sep 13 '11 at 21:02
what is a better solution in your meaning ? – kai lange Sep 13 '11 at 21:06
don't use order by random or cache the result id externally then use php random function to do matching – ajreal Sep 13 '11 at 21:15

1 Answer

up vote 0 down vote accepted

There are many ways to do this but I believe this will work:

select g.id,g.genre_id,g.title, gm.* 
from games g inner join game_medias as gm 
where (g.genre_id = (SELECT genre_id FROM games WHERE id = 2))
group by rand(g.id) limit 8;

If there is an index on games.id then it should be quite fast.

share|improve this answer
well this don't return any data – kai lange Sep 13 '11 at 21:06
sorry its working - you're right :) – kai lange Sep 13 '11 at 21:12
Thanks - i have set the index and works great a current part is: select g.genre_id,g.title,gm.game_id,gm.media_type,gm.media_url from games g inner join game_medias as gm where (g.genre_id = (SELECT genre_id FROM games WHERE id = 2)) and gm.media_type = 'THUMB' and g.id=gm.game_id group by rand(gm.game_id) limit 8; "and g.id=gm.game_id" must be inside to get the correct values from gm. values to the correct g. values - but nice to see how fast i get the answer :) – kai lange Sep 13 '11 at 22:21

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.