select*from test;
先查询所有的结果一共是8条记录
select top(50) percent *from test;
则只查询该表中百分之50的结果集
本文共 143 字,大约阅读时间需要 1 分钟。
select*from test;
先查询所有的结果一共是8条记录
select top(50) percent *from test;
则只查询该表中百分之50的结果集
转载于:https://www.cnblogs.com/Allen974103107/p/5046850.html