出现原因:MySQL 5.7.5和up实现了对功能依赖的检测。如果启用了only_full_group_by SQL模式(在默认情况下是这样),那么MySQL就会拒绝选择列表、条件或顺序列表引用的查询,这些查询将引用组中未命名的非聚合列,而不是在功能上依赖于它们。(在5.7.5之前,MySQL没有检 ...
分类:
数据库 时间:
2020-02-02 00:53:01
阅读次数:
121
1 """ 2 Given an array of integers, return indices of the two numbers such that they add up to a specific target. 3 4 You may assume that each input w ...
分类:
其他好文 时间:
2020-02-01 23:27:36
阅读次数:
86
error Failed to install the app. Make sure you have the Android development environment set up: https://facebook.github.io/react-native/docs/getting-s ...
分类:
移动开发 时间:
2020-02-01 19:49:03
阅读次数:
142
前言 记忆力下降,每年只画一幅画。有时候会忘记以前学过的技巧,故在此记下,备忘。 入门 颜色的理解 线稿注意事项 材质 金属的质感,参考这个的头上眼镜画法和腰间夹子 粘稠液体画法 推荐一个up叫EvanleeCG 褶皱画法 注意着力点,褶皱都是着力点出发的散射装 不同硬度的服饰褶皱不同,西服就很硬朗 ...
分类:
其他好文 时间:
2020-02-01 16:37:50
阅读次数:
92
1、安装docker:yum -y install docker查看版本docker version来自 2、查看镜像docker images3、查看容器Docker ps -a exit状态是已退出的容器,up是运行中4、删除容器docker rm 加ID5、删除镜像Docker rmi 加ID... ...
分类:
其他好文 时间:
2020-02-01 16:23:42
阅读次数:
80
删除本地文件后,想从远程仓库中从新Pull最新版文件。 Git提示:up to date,但未得到删除的文件 原因:当前本地库处于另一个分支中,需将本分支发Head重置至master. git checkout master git reset hard git 强行pull并覆盖本地文件 git ...
分类:
其他好文 时间:
2020-02-01 12:46:51
阅读次数:
290
题目描述: Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would h ...
分类:
其他好文 时间:
2020-01-31 12:38:32
阅读次数:
93
Given an array A of 0s and 1s, we may change up to K values from 0 to 1. Return the length of the longest (contiguous) subarray that contains only 1s. ...
分类:
其他好文 时间:
2020-01-31 00:59:06
阅读次数:
67
leedcode 215. 数组中的第K个最大元素 快排每次寻找都会确定一个元素的真实位置 快排的思想: 先定第一个位置是坑,取出第一个位置的值作为最终要确定位置的值,设置up指针和down指针 由于一开始坑的位置和up重合,直接判断坑的值和down的值大小,此时坑>down需要换坑位置,交换以后d ...
分类:
编程语言 时间:
2020-01-29 23:21:46
阅读次数:
74
A straight dirt road connects two fields on FJ's farm, but it changes elevation more than FJ would like. His cows do not mind climbing up or down a si ...
分类:
其他好文 时间:
2020-01-29 15:43:18
阅读次数:
94