
数据库
就是笔记呀呀呀呀呀呀!记录一下下。可以的吧?
先验
菜鸟,很菜的那种
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SET PASSWORD FOR user1@localhost=PASSWORD('1234');报语法错误
一、错误:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'password('1234')' at line 1二、原因:猜测是MySQL版本问题,新旧版本语法不同...原创 2020-03-22 22:17:48 · 1448 阅读 · 0 评论 -
(笔记)start mysqld.service Job for mysqld.service failed because the control process解决方案
1. 查看mysql在启动的时候报了什么错cat /var/log/mysqld.log2.我这里报了这种错误“Unsupported redo log format (0). The redo log was created before MySQL 5.7.9”2021-05-26T04:00:31.131541Z 1 [ERROR] [MY-013090] [InnoDB] Unsupported redo log format (0). The redo log was create原创 2021-05-26 14:15:46 · 561 阅读 · 0 评论 -
MySQL查询表结构的两种方式
一、SQL语法格式SHOW CREATE TABLE tableName;例图二、SQL语法格式DESC tableName;例图原创 2019-06-19 15:42:46 · 362 阅读 · 0 评论