首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > VFP >

top语句为何无效?

2012-03-25 
top语句为何无效?在线等!select*top1fromtable1where*** 111orderby***为何总是选出所有符合记录的?用dis

top语句为何无效?在线等!
select   *   top   1   from   table1   where   ***= '111 '   order   by   ***

为何总是选出所有符合记录的?

用distinct的话倒是只选出了一个

[解决办法]
VFP6.0
1、
select * top 1 from table1 where 字段1= '111 ' order by 字段1
得到多条记录

2、
select * top 1 from table1 where 字段1= '111 ' order by 字段2
得到1条记录


VFP9.0
1、
select * top 1 from table1 where 字段1= '111 ' order by 字段1
得到1条记录

2、
select * top 1 from table1 where 字段1= '111 ' order by 字段2
得到1条记录

热点排行