mysql(Linux)
君不见走马川行雪海边 平沙莽莽黄入天
希望你越来越有能力
#2020年送给自己的话。
展开
-
mysql数据库跳过密码设置密码的方法
mysql数据库跳过密码设置密码的方法主要是通过修改配置文件的方法 root@host51 ~]# vim /etc/my.cnf [mysqld] skip-grant-tables -----添加此行,该行的意思是跳过授权 #validate_password_policy=0 #validate_password_length=6 [root@host51 ~]# systemctl ...转载 2018-08-17 15:33:52 · 430 阅读 · 0 评论 -
mysql基础篇
mysql装包 mysql是个tar包,需要用tar解压后用rpm装包tar -xf mysql-5.7.17.tar,如果远程装包需要scp发送过去 解压后rpm装包rpm -Uvh mysql-community-*.rpm 直接rpm升级装包(可避免系统类自代数据库程序冲突)其中server和client包必须要有装的 在rpm装包过程中,如出现需要依赖包,直接按提示yum装包 一般需要一...原创 2018-08-20 12:04:16 · 153 阅读 · 0 评论 -
1约束 2健值(索引index,主健primary key)
约束条件 mysql> desc t12; +-------+--------------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-------+--------------------------+---...原创 2018-08-25 17:13:58 · 418 阅读 · 0 评论