Sql 语句纪实

1.  复制表

      见Sqlite 将一张表的数据复制到另一张表中


2.  重新创建表

drop table if exists tb;
create table tb(...);



3. 如果表存在则不创建,不存在则创建

create table if not exists tb(...);






 
























posted @ 2011-08-22 14:19  JarvisChu  阅读(167)  评论(0编辑  收藏  举报