-1

我使用 ADO.NET 数据集创建了水晶报表,报表运行良好,但现在我的问题是:。

如何让我的报告从多个表中获取数据,因为我尝试使用 INNER JOIN 方法但它不起作用,它什么也没显示......

那么有人可以给我一个关于如何制作水晶报表以使用 VB.NET 从多个表中获取数据的想法吗?并告诉我水晶报表中“SQL 表达式”的用途。

求求你了,谢谢你。

4

2 回答 2

0

阅读本文以了解 SQL 表达式字段的用途。并且没有任何代码用于您的表连接,没有人能够帮助您。

编辑:

我不知道“txtcustnr.text”中的数据是什么,而不是where customers.cust_id = '"& txtcustnr.text & "'"尝试,但是如果您希望 txtcustnr.text 中的数据与 customers.cust_id 相同,请尝试上面的 WHERE 子句。where customers.cust_id = txtcustnr.text

于 2013-10-20T16:10:49.740 回答
0

Con.close Con.open Query = "select customers.cust_id,customers.cust_fname,customers.cust_lname,invoices.inv_id,invoices.inv_date from customers Inner Join Invoices ON customers.cust_id = invoices.cust_id where customers.cust_id = '"& txtcustnr.text & "'"

关闭

于 2013-10-20T16:25:24.360 回答