云开发数据库如何多表联查
表一结构 bookid ,title , body [string] [string] [string] 表二结构 bookid ,reads ,answers [string] [string] [string] 因为权限问题,只有创建者和管理员有写权限,所以每次有人read或answer时,只能在表二中新增记录, 假如 reads-count 原来阅读数,answers-count 为回复数 当我要获取bookid,title,body,reads-count,answers-count时,应该怎么操作?能列举例子吗?