首页 > 数据库 > SQL Server > 正文

SQL Server数据库按百分比查询出表中的记录数

2024-08-31 01:03:09
字体:
来源:转载
供稿:网友

这篇文章主要介绍了SQL Server数据库在一个表中按百分比查询出记录条数的方法及代码示例,需要的朋友可以参考下

SQL Server数据库查询时,能否按百分比查询出记录的条数呢?答案是肯定的。本文我们就介绍这一实现方法。

实现该功能的代码如下:

 

 
  1. create procedure pro_topPercent  
  2. (  
  3. @ipercent [int] =0 --默认不返回  
  4. )  
  5. as 
  6. begin 
  7. select top (@ipercent ) percent * from books  
  8. end 

 

 
  1. create procedure pro_topPercent  
  2. (  
  3. @ipercent [int] =0  
  4. )  
  5. as 
  6. begin 
  7. select top((select COUNT (*) from books)*(@ipercent)/100) * from books  
  8. end 
  9. exec pro_topPercent '10' --执行存储过程 

创建存储过程的语法类似带指针的C#,创建时参数表用小括号括起,输出参数带传递方向的参数标识 OUTPUT,输入参数不用,参数声明格式:

(

@studentname [nvarchar] (50) output

)

存储过程执行时参数表不用加括号,若有输出参数,先声明,用如下格式执行:

 

 
  1. declare @studentname_1  
  2.  
  3. exec myprocedure  

'输入参数',@studentname_1 output, 如果前台用的是.net的话可以在comand.parameters中添加传递方向为output的sqlparameter参数接收该值。

关于SQL Server数据库按百分比查询记录条数的操作就介绍到这里,希望本次的介绍能够给您带来一些收获。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表