vfp 我要查询表中最后一行的数,怎么查询不了?我的代码如下,我的代码如下,求帮忙s=thisform.text2.value select top 1 货款余额 from 出入账记录 WHERE 客户编号=s order by 日期 DESC into cursor "ttt" &am
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/09 04:57:50
vfp 我要查询表中最后一行的数,怎么查询不了?我的代码如下,我的代码如下,求帮忙s=thisform.text2.value select top 1 货款余额 from 出入账记录 WHERE 客户编号=s order by 日期 DESC into cursor "ttt" &am
vfp 我要查询表中最后一行的数,怎么查询不了?我的代码如下,
我的代码如下,求帮忙
s=thisform.text2.value
select top 1 货款余额 from 出入账记录 WHERE 客户编号=s order by 日期 DESC into cursor "ttt" &&DESC
THISFORM.text9.VALUE=ttt.货款余额
vfp 我要查询表中最后一行的数,怎么查询不了?我的代码如下,我的代码如下,求帮忙s=thisform.text2.value select top 1 货款余额 from 出入账记录 WHERE 客户编号=s order by 日期 DESC into cursor "ttt" &am
如果仅仅是查询最后一行的话,你可以这样做
select MAX(RECNO()) from 出入账记录 WHERE 客户编号=s into array ls
select 货款余额 from 出入账记录 WHERE recno()=ls into array ls1
THISFORM.text9.VALUE=ls1
或是你能确认sele后,最后一条肯定在第一条出现
select 货款余额 from 出入账记录 WHERE 客户编号=s order by 日期 DESC into cursor "ttt"
sele ttt
go top
THISFORM.text9.VALUE=ttt.货款余额