您的位置:首页 > 数据库 > MySQL

sqlite3常用操作命令 和mysql的区别及优缺点

2017-06-30 13:22 441 查看
SQLite 的数据库权限只依赖于文件系统,没有用户帐户的概念。sqlite3 testdb.db.databases 命令查看数据库列表create table tbl(name char(10), age smallint, score float);列出表和架构.tables插入数据insert into tbl values('yanggang', 24, 98);insert into tbl values('sunboy', 20, 78.5);查询数据select * from tbl;

http://blog.csdn.net/ithomer/article/details/7027424http://ivanzz.blog.51cto.com/6378766/1130544
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: