重庆附近城市旅游景点:vfp中如何把select count(*)的结果输出到内存变量?请写出源代码

来源:百度文库 编辑:高考问答 时间:2024/04/30 13:29:23

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

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