T_category:
CATID(PK)| CatName
T_Log:
LOGID(PK)| CATID(FK)
T_Report:
ReportID | LOGID(FK)
是否可以从T_Report表中的T_Category获取CatName
想要输出如:
T_Report:ReportID | LogID | CatName
答案 0 :(得分:2)
SELECT r.*, c.CatName FROM T_Report r INNER JOIN T_Log l ON
r.LogId = l.LogID INNER JOIN T_Category c ON c.CatID = l.CatID
应该为你做的伎俩。