zoukankan      html  css  js  c++  java
  • python SQLite3

    一、centos 安装SQLite

    # yum install SQLite3 sqlite3-dev

    二、连接SQLite3

    #sqlite3 test.db

    三. 创建首个 SQLite 数据库

    现在你已经安装了 SQLite 数据库,接下来我们创建首个数据库。在命令行窗口中输入如下命令来创建一个名为 test.db 的数据库。 sqlite3 test.db

     sqlite3 test.db
     sqlite> create table mytable(id integer primary key, value text);  2 columns were created. 

    该表包含一个名为 id 的主键字段和一个名为 value 的文本字段。

    注意: 最少必须为新建的数据库创建一个表或者视图,这么才能将数据库保存到磁盘中,否则数据库不会被创建。

    接下来往表里中写入一些数据:

    sqlite> insert into mytable(id, value) values(1, 'Micheal');  sqlite> insert into mytable(id, value) values(2, 'Jenny');  sqlite> insert into mytable(value) values('Francis');  sqlite> insert into mytable(value) values('Kerk');
    

      

    查询数据:

     sqlite> select * from test;  1|Micheal  2|Jenny  3|Francis  4|Kerk
    

      

    设置格式化查询结果: 

    sqlite> .mode column;  sqlite> .header on;  sqlite> select * from test;  id          value  ----------- -------------  1           Micheal  2           Jenny  3           Francis  4           Kerk 

    .mode column 将设置为列显示模式,.header 将显示列名。

    修改表结构,

    增加列:

     sqlite> alter table mytable add column email text not null '' collate nocase;
    

      

    创建视图

     sqlite> create view nameview as select * from mytable;
    

      

    创建索引

     sqlite> create index test_idx on mytable(value);
    

      

    4. 一些有用的 SQLite 命令

    显示表结构:

     sqlite> .schema [table]
    

      

    获取所有表和视图: 

    sqlite > .tables
    

      

    获取指定表的索引列表:

     sqlite > .indices [table ]
    

      

    导出数据库到 SQL 文件: 

    sqlite > .output [filename ]  sqlite > .dump  sqlite > .output stdout
    

      

    从 SQL 文件导入数据库:

     sqlite > .read [filename ]
    

      

    格式化输出数据到 CSV 格式:

     sqlite >.output [filename.csv ]  sqlite >.separator ,  sqlite > select * from test;  sqlite >.output stdout
    

      

    CSV 文件导入数据到表中:

     sqlite >create table newtable ( id integer primary key, value text );  sqlite >.import [filename.csv ] newtable
    

      

    备份数据库: /* usage: sqlite3 [database] .dump > [filename] */  sqlite3 mytable.db .dump > backup.sql

    恢复数据库: /* usage: sqlite3 [database ] < [filename ] */  sqlite3 mytable.db < backup.sql

  • 相关阅读:
    Fast Search:爬网测试 金大昊(jindahao)
    FAST Search :deployment.xml
    TFS:强制签入已签出的文件 金大昊(jindahao)
    采用权限控制的工作流权限设计 金大昊(jindahao)
    FAST Search :创建自定义属性 金大昊(jindahao)
    SharePoint:替换搜索结果连接URL 金大昊(jindahao)
    SharePoint:迁移
    SharePoint:关于word模板内容类型(template.dotx) 金大昊(jindahao)
    SharePoint:备份和还原
    BCS 爬网报错 金大昊(jindahao)
  • 原文地址:https://www.cnblogs.com/eugenebo/p/6917593.html
Copyright © 2011-2022 走看看