Öneri Bir MySQL sorgusu optimize etmek için gerekli

0 Cevap php

Ben şu iki sorgu var PHP ile parametreli sorgular kullanıyorum:

SELECT username,question_text 
FROM questions,users 
WHERE questions.question_id = 4 AND questions.user_id = users.user_id

ve

SELECT username, post_text 
FROM posts,users WHERE posts.question_id = 4 
AND posts.user_id = users.user_id ORDER BY posts.post_id ASC

In short, the questions are being discussed in the "posts" table ve are being referenced by their question_id.

Ben bu iki sorgu dışında ihtiyacım sonuçları almak için bir kez veritabanını sorgulamak için yeterli mysql bilmiyorum çünkü benim PHP kodu gereksiz bazı kodlar var.

Is the way I'm doing it fine ve deal with the redundant parts of my PHP code or is there a better way of accomplishing this?

0 Cevap