我有两个表,列表和 globals_lists。globals_lists 基本上将 list_id 与 global_id 值相关联。我想为每个用户获取关联列表类型的 global_ids 计数(即 globals_lists 表中的“manys”数)。
就像是:
select l.id, l.user_id, count(gl.global_id) as gl_count
from lists l, globals_lists gl
where l.list_type_id=10 and l.id=gl.list_id;
但这给了我错误的信息。