摘要: //查看表的内容 select * from hpeu_student; //从第一行查找五行 select * from hpeu_student limit 5; //从第一行的下零行查找5行 select * from hpeu_student limit 5 offset 0; //从第一行 阅读全文
posted @ 2018-08-06 17:32 从不曾明白 阅读(2970) 评论(0) 推荐(0) 编辑
摘要: //查看所有数据库 show databases; //新建Test数据库,建议不要用中文或者关键字,如果一定要用的化可以加反引号``引起来 charset 分为utf8 /gbk create database Test charset utf8; //打开Test数据库(use没有退出数据库的命 阅读全文
posted @ 2018-08-06 16:37 从不曾明白 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 1、wget https://bootstrap.pypa.io/get-pip.py //安装pip 2、python get-pip.py 3、pip install -U mycli --ignore-installed configobj //安装mycli插件 4、mycli -u 用户名 阅读全文
posted @ 2018-08-06 11:25 从不曾明白 阅读(248) 评论(0) 推荐(0) 编辑