SQLite在存储在外部的数据库是以B-Tree来组织的。关于B-tree的细节,参考 ** ** Donald E. Knuth, THE ART OF COMPUTER PROGRAMMING, Volume 3: ** 'Sorting And Searching', pages 473-480. Ad...
当你创建临时表的时候,你可以使用temporary关键字。如: create temporary table tmp_table(name varchar(10) not null,passwd char(6) not null); 或 create temporary table if not exists s...