Community journal

The latest from the MySQL community

Ideas, releases, practical guides, and perspectives from the people building with MySQL.

Follow the feed
Showing entries 2161 to 2170 of 15691 « Previous | Next »
72.14. ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

MySQL 不允许向 secure_file_priv 意外的目录导出文件。 mysql> SELECT * FROM `order` INTO OUTFILE '/tmp/order.txt'; ERROR 1290 (HY000): The MySQL server is running...

【mysql】  【Server】  【variables】  【IT】   点击查看原文>

72.11. this is incompatible with sql_mode=only_full_group_by

ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mydb.

【mysql】  【Group】   点击查看原文>

72.7. ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

这个错误来自 MySQL 5.7,首次登陆MySQL 5.7 必须修改密码 ALTER USER 'root'@'localhost' IDENTIFIED BY 'your_password';

原文出处:Netkiller 系列 手札 本文作者:陈景峯 转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

【mysql】  【BY】   点击查看原文>

72.8. ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

MySQL 5.7 密码强度,必须含有0-9,a-z,A-Z以及“-”或“_” https://dev.mysql.com/doc/refman/5.7/en/validate-password-options-variables.

【安全】  【mysql】  【test】  【grant】  【html】   点击查看原文>

mysql中limit的用法详解[数据分页常用]

转自:http://www.phpweblog.net/peiyinjin/archive/2008/04/15/3199.html

在我们使用查询语句的时候,经常要返回前几条或者中间某几行数据,这个时候怎么办呢?不用担心,mysql已经为我们提供了这样一个功能。

【PostgreSQL】  【mysql】  【html】   点击查看原文>

设置mysql最大连接数的方法

MYSQL数据库安装完成后,默认最大连接数是100,一般流量稍微大一点的论坛或网站这个连接数是远远不够的,增加默认MYSQL连接数的方法有两个

方法一:进入MYSQL安装目录 打开MYSQL配置文件 my.

【mysql】  【数据库】  【variables】   点击查看原文>

mysql的查询、子查询及连接查询

一、mysql查询的五种子句

        where(条件查询)、having(筛选)、group by(分组)、order by(排序)、limit(限制结果数)           1、where常用运算符:

            比较运算符                 > ,...

【mysql】  【函数】  【BY】  【表达式】  【Group】   …

[获取更多]
Python的MySQLdb模块安装

在配置Django时,选择的是mysql数据库,要安装MySQLdb模块,不过安装过程中,遇到了很多errors,记录一下。

  系统:ubuntu 11.10 mysql:直接apt-get安装的,version:5.

【python】  【mysql】  【ubuntu】  【模块】  【file】  【html】  【Blog】   …

[获取更多]
MySQL索引背后的数据结构及算法原理

原文地址:http://www.codinglabs.org/html/theory-of-mysql-index.html#nav-2-1

摘要 本文以MySQL数据库为研究对象,讨论与数据库索引相关的一些话题。

【算法】  【mysql】  【innodb】  【数据库】  【索引】  【磁盘】  【数据结构】   …

[获取更多]
MYSQL导入导出.sql文件

一.MYSQL的命令行模式的设置:桌面->我的电脑->属性->环境变量->新建->PATH=“;path\mysql\bin;”其中path为MYSQL的安装路径。二.简单的介绍一下命令行进入MYSQL的方法:1.C:\>mysql -h hostname -u username -p按ENTER键,等待然后输入密码。

【mysql】  【SQL】  【数据库】  【path】  【Create】  【database】   …

[获取更多]