1
這裏是我的表格和我目前的方法。太多的查詢,所以任何最有效的方法來做到這一點?有效的方式來查詢內容列表,每個內容需要獲取標籤和類別列表
Table: contents
content_id
Table: taxonomy_terms
tt_id
type (tag or category)
name
Table: relationships
content_id
tt_id
僞代碼:
mysql: query limit 20 contents from **contents**
php: for each content
mysql: query tags and categories from **relationships** with content_id
Number of queries: 1 + 20 = 21