gpt4 book ai didi

sql - 在 SQL Server 的 select 语句中使用带有 TOP 的变量而不使其动态化

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

declare @top  int
set @top = 5
select top @top * from tablename

可能吗?

或者对这样的逻辑有什么想法(我不想使用动态查询)?

最佳答案

是的,在 SQL Server 2005 中,可以在 top 子句中使用变量。

select top (@top) * from tablename

关于sql - 在 SQL Server 的 select 语句中使用带有 TOP 的变量而不使其动态化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1927450/

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