假设我只想显示来自SQL查询的100个结果
string str="select * tableA where id > 56";
给我12,000,我只想显示该查询的前100个
感谢
答案 0 :(得分:5)
string str="select top 100 * tableA where id > 56";
答案 1 :(得分:3)
select TOP 100 * tableA where id > 56
您可以使用TOP
指定从结果返回的行数。
答案 2 :(得分:1)
除非您只想要100个id为>的随机记录56你也应该订购你的结果。