#mySQL

mysql 时间戳格式化函数from_unixtime使用说明

mysql时间戳格式化函数from_unixtime使用说明<pre>mysql>selectfrom_unixtime(1459338786);+---------------------------+|from_unixtime(1459338786)|+---------------------...

mysql 使用inet_aton和inet_ntoa处理ip地址数据

创建表<pre>CREATETABLE`user`(`id`int(11)unsignedNOTNULLAUTO_INCREMENT,`name`varchar(100)NOTNULL,`ip`int(10)unsignedNOTNULL,PRIMARYKEY(`id`))ENGINE=InnoDB;<...
代码星球 ·2020-05-23

mysql慢查询日记

mysql慢查询日记<pre>#必须写到mysqld注意给/tmp/showslowmysql.log775权限要写入权限[mysqld]#开启慢查询日记slow_query_log=1#设置日记路径slow_query_log_file=/tmp/showslowmysql.log#超过1秒就代表慢查询记...
代码星球 ·2020-05-23

mysql高并发配置

mysql高并发配置要在mysqld下设置1修改back_log参数值:由默认的50修改为500.(每个连接256kb,占用:125M)back_log=500<pre>back_log值指出在MySQL暂时停止回答新请求之前的短时间内多少个请求可以被存在堆栈中。也就是说,如果MySql的连接数据达到max...
代码星球 ·2020-05-23

mysql left join和union结合的用法

leftjoin和union结合的用法子查询union然后加个括号设置个别名(union自动去除重复的) <pre>selecto.nickName,o.sex,o.province,o.city,from_unixtime(m.time,'%Y-%m-%d%H:%i:%s')asstarttim...

mysql子查询用法

mysql子查询用法1可以当值来用<pre>selectidfromhcyuyin_sharewhereid=(selectidfromhcyuyin_sharelimit200000,1)</pre>2可以当做表来用<pre>selecto.nickName,o.sex,o.pro...
代码星球 ·2020-05-23

mysql order by rand() 优化方法

mysqlorderbyrand()优化方法适用于领取奖品等项目<pre>mysql>select*fromuserorderbyrand()limit1;+-------+------------+----------------------------------+----------+-----...
代码星球 ·2020-05-23

mysql explain中key_len的作用

mysqlexplain中key_len的作用key_len越小索引效果越好name的字段类型是varchar(20),字符编码是utf8,一个字符占用3个字节,那么key_len应该是20*3=60。<pre>mysql>explainselect*from`member`wherename='fd...

mysql分页查询优化

mysql分页查询优化当limit基数大的时候查询速度会变得很慢这个时候一般<pre>mysql>selecta.*frommemberasainnerjoin(selectidfrommemberwheregender=1limit300000,1)asbona.id=b.id;+--------+...
代码星球 ·2020-05-23

mysql 严格模式 Strict Mode

mysql严格模式StrictMode找到MySQL安装目录下的my.cnf(windows系统则是my.ini)文件在sql_mode中加入STRICT_TRANS_TABLES则表示开启严格模式,如没有加入则表示非严格模式,修改后重启mysql即可例如这就表示开启了严格模式:sql_mode=NO_ENGINE_S...

mysql 转换NULL数据方法

mysql转换NULL数据方法<pre>SELECTinfo1,info2,IFNULL(info3,0)asinfo3FROM`info1`;</pre><pre>IFNULL(expr1,expr2)</pre>如果expr1不是NULL,IFNULL()返回expr...

mysql大小写敏感配置

mysql大小写敏感配置showglobalvariableslike'%lower_case%';showglobalvariableslike'%lower_case%';<pre>+------------------------+-------+|Variable_name|Value|+-----...
代码星球 ·2020-05-23

mysql导入大批量数据出现MySQL server has gone away的解决方法

mysql导入大批量数据出现MySQLserverhasgoneaway的解决方法<pre>mysql>showglobalvariableslike'max_allowed_packet';+--------------------+---------+|Variable_name|Value|+-...

mysql函数concat与group_concat使用说明

mysql函数concat与group_concat使用说明concat()函数<pre>mysql>selectconcat(',',name,',')from`user`;+--------------------------+|concat(',',fdipzone,',')|+--------...

mysql 查看当前使用的配置文件my.cnf的方法

mysql查看当前使用的配置文件my.cnf的方法<pre>psaux|grepmysql|grep'my.cnf'</pre>如果上面的命令没有输出,表示没有设置使用指定目录的my.cnf。如果没有设置使用指定目录的my.cnf,mysql启动时会读取安装目录根目录及默认目录下的my.cnf文...
首页上一页...491492493494495...下一页尾页