我正在做一個wp留言簿,我在某個地方犯了一個錯誤。起初,我試圖使用加入,但coud無法得到它的,因爲所有這些條件的正常工作,所以我寫了這個:如何解決慢sql查詢
$query = "
(select *,
(select count(cid) from ctable WHERE nid = vid) as posts,
(select timestamp from ctable where nid = vid order by timestamp desc limit 1) as lt,
(select count(vid) from ntable) as total
FROM ntable
)";
這也正是它supossed做的,但它是非常緩慢的。我知道我喊使用加入,但我不能弄明白。
返回錯誤。它不喜歡with(nolock)部分。 – Muhaha