分类 MySQL 对应的文章如下

终端命令行查看MySQL版本:➜  /etc /usr/local/mysql/bin/mysql -V/usr/local/mysql/bin/mysql  Ver 14.14 Distrib 5.7.17, for macos10.12 (x86_64) using  EditLine wrapperMac初始时是没有MySQL配置文件的需要到mysql安装目录下拷贝初始配置文件修改方法如下:mac  mysql  my.cnf配置文件位置:mysql 默认配置文件在目...

阅读全文 »

环境:MacOS 10.12 客户端Sequel Pro 1.1.2MySQL 5.7.17  客户端连接数据库报错:连接失败:Connection failed!Unable to connect to host 127.0.0.1, or the request timed out.Be sure that the address is correct and that you have the necessaryprivileges, or try increasing the connection timeout (currently 10 seconds).MySQL said:...

阅读全文 »

MySQL kill 其中运行时间很长的sql使用终端navicat 或者其他mysql客户端执行:show processlist; --显示正在运行的进程查询结果举例如下:Id User     Host db Command Time     State     Info9896217 test 192.168.0.35:42622 test Sleep 2039 NULL9896218 test 192.168.0.35:42630 te...

阅读全文 »

MySQL执行SQL 语句客户端直接弹出式报错:Out of range value for column 'y' at row 1根据提示信息可知 y字段类型范围溢出了,请检查y字段类型。我的错误如下:DELIMITER ;; CREATE PROCEDURE test_insert() BEGIN DECLARE y TINYINT DEFAULT 1;WHILE y<20000DOinsert into user(  `aa`,  `bb`,  `cc` ) ...

阅读全文 »

Mac我在mysql客户端Sequel Pro上连接mysql时会报错,回头看了【系统偏好设置】里面MySQL Server Status是The MySQL Server Instance is stopping状态。那么我在终端上尝试启动mysql服务:#sudo /usr/local/mysql/support-files/mysql.server stop#sudo /usr/local/mysql/support-files/mysql.server start出现以下错误:错误:ERROR! The server quit with...

阅读全文 »

[Err] 3055 - Geometry byte string must be little endian.sql show:SELECT    *FROM    bidsWHERE     CONTAINS (title, "','")The result:[SQL]SELECT    *FROM    bidsWHERE     CONTAINS (title, "','")[Err] 3055 - Geometry byte st...

阅读全文 »