3
3h
Unregistered / Unconfirmed
GUEST, unregistred user!
eg:
With query1.sql do
begin
clear;
add('select id from mytable where id>3000');
end;
query1.open;
query1.last;
showmessage(inttostr(query1.recordcount));
用这种方法实现对符后条件记录的统计我知道,不过效率比较低。
我想,应该在SQL中会有一种象Max函数一样的语句达到那样的高效。
因为在服务器端,服务器的速度可能非常快,比在当前取资料后再
统计快些...我是这样认为的。但不知道此函数。
故求。
With query1.sql do
begin
clear;
add('select id from mytable where id>3000');
end;
query1.open;
query1.last;
showmessage(inttostr(query1.recordcount));
用这种方法实现对符后条件记录的统计我知道,不过效率比较低。
我想,应该在SQL中会有一种象Max函数一样的语句达到那样的高效。
因为在服务器端,服务器的速度可能非常快,比在当前取资料后再
统计快些...我是这样认为的。但不知道此函数。
故求。