Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让这段代码在 Visual Basic 中工作:
在一个SqlDataSource我尝试了这个 SQL 命令:
SqlDataSource
SELECT * FROM @Parameter1
我已Parameter1在 ReportViewer 中创建,但出现错误:
Parameter1
必须声明表变量
有什么帮助吗?
您不能使用参数来指定表的名称或字段的名称。 参数只能用于表示 SELECT/DELETE/UPDATE 的 WHERE 子句中的值或传递给 INSERT/UPDATE 语句的值