码迷,mamicode.com
首页 > 数据库 > 详细

Sqlite中使用rowid来表示行号,用于分页。

时间:2014-09-24 21:52:27      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:style   color   使用   ar   for   sp   art   on   c   

在SQLite的查询结果中显示行号,可以使用select rowid as RowNumber ,* from WSCLanguage;
 
select rowid as RowNumber ,* from WSCLanguage ORDER BY CreateTime;

 

 

 

 select distinct keyword from articlecontent;
 
 /* select last_insert_rowid()  aaa   返回最后一条记录ID*/

 

select *  from (select * from articlecontent) articleTab  where aid<=500 and createdate between ‘2011-3-13‘ and ‘2011-3-15‘ order by createdate asc limit 50;

 

select * from articlecontent where keyword like ‘form%‘;
 
select * from articlecontent tab1,ArticleCategories tab2 where tab1.categoryid=tab2.cid;

 

/*insert  articlecontent values(‘aaa‘,‘abcdefg‘,‘2010-01-01‘,‘abc‘,4);*/

 

 
select current_timestamp   ,  datetime(CURRENT_TIMESTAMP,‘localtime‘);;
select datetime();
select date();
select time();
select datetime(‘2006-10-17‘);
select datetime(‘2006-10-17 00:20:00‘,‘+5 hour‘,‘-12 minute‘);
select datetime(‘now‘,‘start of year‘);
select strftime(‘%Y-%m-%d  %H:%M:%S‘,‘now‘);

 

select rowid as rowNumber,* from ArticleContent;/*行号*/

 


 

 

Sqlite中使用rowid来表示行号,用于分页。

标签:style   color   使用   ar   for   sp   art   on   c   

原文地址:http://www.cnblogs.com/songxingzhu/p/3991404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!