2
所以我有這樣的語句來抓取所有帖子MySQL存儲功能和PHP
select id, title
from posts
where type = 'article'
和我有一個存儲函數計算總的意見,並返回結果
我知道我可以執行它像
select totalView(id)
,但我怎麼能合併這兩個查詢與每個總視圖退回所有帖子發佈
可能類似於
select id, title, totalView(id) as total
from posts
where type = 'article'
謝謝。
請出示TotalView的功能 – Aris
你給** **是回答你問的問題的例子。 – symcbean