2015-01-03 98 views
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' 

謝謝。

+2

請出示TotalView的功能 – Aris

+1

你給** **是回答你問的問題的例子。 – symcbean

回答

0
select count(*) as total, id, title from posts where type = 'article' 

編輯:將計算$ ID的所有行

select count(*) as total, id, title from posts where type = 'article' AND id = $id; 
+0

感謝您的評論,但totalView是一個存儲函數,它將文章的id作爲參數並返回總體視圖。 – Roy5