数据库

top语句不起作用解决办法

2011-11-27

sql server :

在取数据库前几条记录时会碰到取到记录与语句不符的情况:如select top 5本来取5条记录但是确显示了5条以上的记录,这是由于在排序时遇到字段值相同的记录。解决办法例:select top 5*from(select top 5*from(select*from nnes here nrole 2order by ntime desc)order by nsho desc)这是一个双字段排序语句nsho是我自己定义的一个排序字段,经常出现重复现象,造成top语句不起作用把select top 5*from(select*from nnes here nrole 2order by ntime desc)order by nsho desc在它嵌套在select top 5*from中就解决了top语句不起作用的现象。

access top语句:SELECT     TOP 8 id, qname, img, yw
FROM         (SELECT     TOP 8 id, qname, img, yw
                       FROM          co
                       WHERE      (sh = 1) AND (zd = 1)) derivedtbl

access语句只需在后面加上 derivedtbl。