
SQLite3
wchinaw
这个作者很懒,什么都没留下…
展开
-
SQLite3 table 结构修改
SQLite的的ALTER TABLE命令允许用户重命名或添加新的字段到已有表中,不能从表中删除字段。并且只能在表的末尾添加栏目比如,为 Subscription添加两个栏目ALTER TABLE Subscription ADD COLUMN Activation BLOB;A转载 2011-07-11 16:37:30 · 8963 阅读 · 0 评论 -
sqlite3 多表查询方法
多表查询方法:sqlite3可以有多种多表查询方法,比如 select (select * from table2) from table1 where xxx=xxx;这种方法比较简单:select table1.abc from table1,table2 where t原创 2011-07-11 17:04:33 · 36646 阅读 · 0 评论