只显示100个结果
本文关键字:结果 100个 显示 | 更新日期: 2023-09-27 18:14:51
假设我只想显示100个sql查询结果
string str="select * tableA where id > 56";
给了我12,000我只想显示查询的前100个
谢谢
string str="select top 100 * tableA where id > 56";
select TOP 100 * tableA where id > 56
您可以使用TOP
指定从结果返回的行数
除非你只是想要100个id> 56的随机记录,否则你也应该排序你的结果