vfp中如何把select count(*)的结果输出到内存变量?请写出源代码

来源:百度知道 编辑:UC知道 时间:2024/05/16 00:56:03

select 的结果不能直接输出到内存变量,但可以到数组,
所以可以
sele count(*) from 表名 into array 数组名
系统会产生这个数组,其实该数组只有一个元素,假如叫aa的话,那么
? aa(1)

sele count(*) from bbb into array aa
?aa