在水晶报告中的每个表中的多个字段的基础上加入两个表

时间:2015-10-05 15:21:36

标签: c# asp.net sql-server vb.net crystal-reports

我正在使用Crystal报告。我有两张桌子;一个表格为 tableA ,字段为sectioncourseNumCourseName,还有第二个 tableB < / strong>和字段包含部分,courseNumStudentNumber,如下所示

tableA
section 
courseNum
CourseName 

tableB
section
courseNum 
StudentNumber  

所以我想要像这样加入

tableA.Section = tableB.Section
tableA.courseNum  = tableB.courseNum 

但是我希望在Crystal报表的每个表中的多个字段的基础上加入这两个表。如何连接水晶报表中每个表中两个字段之间的链接。我的意思是两个都是内连接,一个是内连接,一个字段是左连接。

1 个答案:

答案 0 :(得分:0)

这是加入复合列的方法:

SELECT * 
FROM tableA
JOIN tableB ON tableA.Section = tableB.Section 
AND tableA.courseNum  = tableB.courseNum 

希望有所帮助。