Thinking ...

记录所见,所思,所悟...

导航

iBATIS中处理SqlServer 2000 top n的方法

由于sqlserver 2000 top 时,只支持常量(据说2005支持top函数)。在iBATIS中,对于top参数,只能用动态SQL方式。如
<select id="getClassLatest" parameterClass="map" resultMap="musicItemMap">
  SELECT top $number$ * FROM tbl_music_item where class_id=#classId# order by add_time desc
 </select>

posted on 2007-01-10 14:29  barry  阅读(1019)  评论(1编辑  收藏  举报