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

sqlite3语法总结

2012-12-26 
sqlite3语法小结SQLite3不支持的SQL语法请参考:http://hyshang.blog.163.com/blog/static/459458222012131

sqlite3语法小结
SQLite3不支持的SQL语法请参考:http://hyshang.blog.163.com/blog/static/4594582220121311728522/
自己做过的测试:
在SQLite3中统计总的行数select COUNT (*) AS linenum from Table_name生成的结果有一行一列,字段名为linenum,内容为行数的字符串
在SQLite3中显示前N行select * from table_name limit N  
在SQLite3中显示从第N条开始的M条记录select * from table_name limit N,M //N序号从0开始
在sqlite3中构建rowid:select rowid,* from table_name  //最左边一列段名为rowid,从1开始select rowid [as column_name] from table_name //只有一列段名为rowid,从1开始sqlite不支持rownum,但是可以使用rowid和limit组合实现rownum的功能sqlite rowid的功能参考:http://www.sqlite.org/lang_createtable.html#rowid
删除某段范围的记录delete from system where rowid in (select rowid from system limit N,M)
删除某表的所有行delete from table_name不支持delete * from table_name不支持Truncate table name

1楼wangeen昨天 15:15
sqlite很不错哦 小巧用起来方便 效率也不底

热点排行