最近开发的程序,因为bd设计和需求更新问题。
---
建立 .sh 文件 例如: updatedb.sh
里面写入命令:
sqlite3 xxx.db<<EOF
drop table if exists temp;
ALTER TABLE table_xx_name RENAME TO temp;
create table if not exists table_xx_name (xxxxxxxx);
insert into table_xx_name (_id,各个字段以逗号分割) select _id,选中字段以逗号分割 但是没有 括号 from temp;
drop table temp;
EOF
完成;
EOF 很重要 EOF 很重要 EOF 很重要