Jump to content
Fórum Script Brasil
  • 0

Dúvida para selecionar posts de amigos!


Marlon Douglas

Question

Olá gente. Estou com uma dúvida, gostaria de selecionar uma tabela (posts), onde tem um campo chamado usr_id, nele é colocado o id do usuário que postou. Gostaria de selecionar todos os posts, cujo o usr_id tenha na tabela stream_friends. Vou tentar explicar melhor abaixo:

Tabela stream_posts:

id

usr_id

texto

Tabela usr_users:

id

usr_login

Tabela stream_friends:

id

usr_id

fri_id

Então, na tabela stream_posts tem 2 registros: (Id: 1, 2 usr_id: 1, 2 texto: teste, teste number 2), a usr_users tem: (id: 1, 2 usr_login: marlon, admin) e por fim, a stream_friends tem: (id: 1, usr_id: 1, fri_id: 2).

Então, eu estou logado com o usuario admin (id: 1), obtenho o amigo cujo tem o id 2. Agora, preciso seleciona o post, que possui o id 2, pois foi postado pelo meu amigo de id 2. Como posso fazer? Agradeço pela ajuda.

_____

Teste já feito, mal sucedido:

$sql = "
SELECT * FROM usr_users u, stream_friends f, stream_posts p
WHERE f.usr_id = '".$_SESSION["usr_id"]."' AND u.id = f.fri_id AND p.usr_id = u.id
";

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...