gpt4 book ai didi

sql - C# SQL Top 作为参数

转载 作者:行者123 更新时间:2023-12-01 18:01:12 24 4
gpt4 key购买 nike

尝试在我的 sql 语句中参数化 TOP 的值。

SELECT TOP @topparam * from table1

command.Parameters.Add("@topparam",SqlDbType.VarChar, 10).Value = somevalue.ToString();

这似乎不起作用。大家有什么建议吗?
只是为了澄清,我不想使用存储过程。

最佳答案

SQL Server 2005 and above ,你可以这样做:

SELECT TOP (@topparam) * from table1

关于sql - C# SQL Top 作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1275381/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com