
SQL
quan575
http://www.qplot.cn
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
shell sqlite3 数据库命令行工具
官网介绍 https://www.sqlite.org/cli.html 菜鸟教程 http://www.runoob.com/sqlite/sqlite-tutorial.html 常用函数 http://www.runoob.com/sqlite/sqlite-functions.html sqlite 是一个轻量级数据库引擎,ubuntu自带操作命令行sqlite3 命令都是以.开...原创 2018-08-02 15:05:19 · 4239 阅读 · 0 评论 -
sqlite 使用笔记
http://www.sqlitetutorial.net/ https://www.sqlite.org/cli.html 在shell终端使用sqlite3 # 创建表 create table if not exists accession(accession text,accession_version text,taxid text,gi text); # 创建索引 cre...原创 2018-08-27 17:36:15 · 581 阅读 · 0 评论 -
mysql 命令笔记
#登录到MySQL mysql -h 主机名 -u 用户名 -p #登入查询 mysql -D genbank -u root -p show databases; use wordpressdb; show tables; #删除表 DROP TABLE tablename; #查看表的信息 #查看列名 show columns from gbbct; #描述 ...原创 2018-09-04 17:17:54 · 219 阅读 · 0 评论