功能:将多个字符串连接成一个字符串concatconcat(str1,str2,...)concat_ws(一次性可以指定分隔符号)concat_ws(separator,str1,str2,...)group_concat(将groupby产生的同一个分组中的值连接起来,返回一个字符串结果)group_concat([distinct]连接字段[orderby排序字段asc/desc][sepa
分类:
数据库 时间:
2020-09-17 20:17:41
阅读次数:
40
报错信息: trying to create too many buckets. must be less than or equal to: [100000] but was [100001]. this limit can be set by changing the [search.max_b ...
分类:
其他好文 时间:
2020-09-17 19:52:17
阅读次数:
105
什么是跨域 浏览器对于javascript的同源策略的限制 。 跨域原因 示例 域名不同 aaa.com和bbb.com 域名相同,端口不同 aaa.com:81和aaa.com:82 二级域名不同 a.aaa.com和b.aaa.com 协议不同 http和https 为什么有跨域问题 跨域不一定 ...
分类:
其他好文 时间:
2020-09-17 19:26:15
阅读次数:
19
最近打算开发一个自己用的客户端小软件,Delphi、Qt、C#这些都好久不用了,重新拾起来也要花点时间,对比一下觉得还不如研究一下新的东西,最终选中了Electron。
分类:
Web程序 时间:
2020-09-17 17:17:12
阅读次数:
31
//运算 现在想获取User的身份证号码 List<User> users; List<String> idcards= users.stream().map(User::getIdcard).collect(Collectors.toList()) 数组所有元素,按某种规律计算: List<Int ...
分类:
其他好文 时间:
2020-09-17 15:38:10
阅读次数:
22
function compare(property,desc) { return function (a, b) { var value1 = a[property]; var value2 = b[property]; if(desc==true){ // 升序排列 return value1 - ...
分类:
编程语言 时间:
2020-09-17 13:03:07
阅读次数:
38
概述 该篇基于AndroidQ,主要介绍系统启动中的 AMS(ActivityManagerService)的启动过程。 AMS对四大组件(AndroidQ将activity移到了ActivityTaskManagerService中,但也和AMS相关联)进行管理和调度。同时,AMS也对进程、电池、 ...
分类:
移动开发 时间:
2020-09-15 21:02:35
阅读次数:
49
We know that when we create a new UI5 control instance, we can explicitly pass an id into constructor. In this case, developer takes responsibility to ...
分类:
其他好文 时间:
2020-09-15 20:54:51
阅读次数:
29
Recently I am working on a project whose prerequisite is that developer must figure out how a field for example Material description in ERP and Produc ...
分类:
数据库 时间:
2020-09-15 20:52:46
阅读次数:
45
1.DQL:查询语句1.排序查询2.聚合函数3.分组查询4.分页查询2.约束3.多表之间的关系4.范式5.数据库的备份和还原DQL:查询语句1.排序查询*语法:orderby子句*orderby排序字段1排序方式1,排序字段2排序方式2...*排序方式:*ASC:升序,默认的。*DESC:降序。*注意:*如果有多个排序条件,则当前边的条件值一样时,才会判断第二条件。2.聚合函数:将一列数据作为一个
分类:
数据库 时间:
2020-09-12 21:23:20
阅读次数:
60