Chinaunix首页 | 论坛 | 博客
  • 博客访问: 331896
  • 博文数量: 65
  • 博客积分: 1770
  • 博客等级: 上尉
  • 技术积分: 1125
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-13 14:31
文章分类

全部博文(65)

文章存档

2016年(1)

2014年(2)

2013年(5)

2012年(18)

2011年(39)

分类: 数据库开发技术

2011-08-07 21:08:43

在mysql数据库里sql语句有limit的用法,而在access里没有,如要在access里使用例如limit的功能,可以使用如下:
select * from TABLE limit starRow,pageSize
(表是id 升序排列的)
select * from (
   select top pageSize * from ( 
      select top (startRow + pageSize -1)  * from TABLE
   )
   order by id desc
)
order by id asc
 
(表是id降序排列的)
select * from(
 select top pageSize *  from (
  select top (startRow + pageSize -1) * from TABLE 
  ) 
  order by id asc
)
order by id desc
 
在sql里还有可以使用create newtable like oldtable 此种语句,在access就不行了,可以实现同种效果的语句是
select * into NEWTABLE from  OLDTABLE
 
 
参考地址:
阅读(1053) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~