我正在开发一个具有多个订阅者(user_id)的系统,该系统具有多个客户和供应商(继承“Person”类)。我需要为每个订阅者显示客户和供应商的数量(子表的组总数)。如何使用 DQL 获得这些组的总数?
Person:
columns:
user_id: { type: integer }
name: { type: string(80) }
//...
Customer:
inheritance:
type: concrete
extends: Person
columns:
//...
Vendor:
inheritance:
type: concrete
extends: Person
columns:
vendor_type: { type: string(80), notnull: true }
terms_id: { type: integer }
//...