如何从表1到表3获取列

时间:2017-07-26 06:18:23

标签: sql-server

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

1 个答案:

答案 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 

应该为你做的伎俩。