
Mysql
LFfootprint
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
在安装完成mysql5.7 之后,发现密码不知道。直接重置密码。
安装Python3.7时报错ImportError: No module named _ssl 解决方法: (1)需要先添加以以下依赖 (2)在/usr/local/python3/Python-3.7.0/Modules找到Setup.dist文件,按如下步骤修改,使编译Python的时候能找到刚才安装的openssl的库 i. 找到SSL相关配置 #SSL=/usr/local/ssl #_...原创 2019-11-18 17:19:42 · 323 阅读 · 0 评论 -
Mysql知识
1、MySql engine a) Innodb b) Myisam c) Memory d) archive原创 2019-05-08 09:32:16 · 158 阅读 · 0 评论 -
在mysql中建表插入数据
create table test1( id int primary key auto_increment, name varchar(50), gender char(1), age int, birth datetime); create table test2( id int primary key auto_increment, name2 varchar(50), gender2 cha...原创 2019-05-08 09:30:54 · 2299 阅读 · 0 评论