【问题】mysql从5.6升级到5.7后出现:插入数据和修改数据时出错Caused by: com.ibatis.common.jdbc.exception.NestedSQLException: The error occurred while applying a parameter map. ...
分类:
数据库 时间:
2019-10-29 13:44:25
阅读次数:
102
一、ORM简介 我们在使用Django框架开发web应用的过程中,不可避免地会涉及到数据的管理操作(如增、删、改、查),而一旦谈到数据的管理操作,就需要用到数据库管理软件,例如mysql、oracle、Microsoft SQL Server等。 如果应用程序需要操作数据(比如将用户注册信息永久存放 ...
分类:
其他好文 时间:
2019-10-27 22:23:07
阅读次数:
70
1、distinct 关键字的用法:distinct 关键字后面的字段组合去重 distinct 必须select distinct id from test结果 ;根据id 去重select distinct id,name from test 2、group by 分组去重select id,n ...
分类:
数据库 时间:
2019-10-27 12:50:20
阅读次数:
175
数据去重现有两个表 test_01 test_02 其中test_01有重复数据 统计重复数据select count(*) as repeat_count,name from test_01 group by name having repeat_count > 1;1 使用DISTINCT关键字 ...
分类:
数据库 时间:
2019-10-24 09:48:59
阅读次数:
117
这道题非常好。 hint:考虑固定操作次数 $o$,$k$ 最大可取到多少? ...
分类:
其他好文 时间:
2019-10-23 11:32:16
阅读次数:
212
一、Array.filter() + indexOf这个方法的思路是,将两个数组拼接为一个数组,然后使用 ES6 中的 Array.filter() 遍历数组,并结合 indexOf 来排除重复项。function distinct(a, b) { let arr = a.concat(b); re... ...
分类:
编程语言 时间:
2019-10-22 15:30:02
阅读次数:
75
链接:https://atcoder.jp/contests/abc143/tasks/abc143_f 题解:开两个数组,其中一个arr用来保存每个元素出现的次数,同时再开一个数组crr用来保存出现次数等于其下标的个数,然后对crr求前缀和,crr就变成了出现次数维护小于其小标的总个数。 根据题意 ...
分类:
其他好文 时间:
2019-10-22 14:51:33
阅读次数:
76
List去重无非几种方法: 下面文章提供的两种: https://blog.csdn.net/u012156163/article/details/78338574, 以及使用List.stream.distinct()。 文章中还提到了HashSet和linkHashSet,而且测试结果linkH ...
分类:
编程语言 时间:
2019-10-21 20:51:03
阅读次数:
108
又是要对两个字符串一顿操作,返回T or F,典型的dp。 1、建立dp矩阵,确定状态变量:dp[i][j]表示the number of distinct subsequences of s[0:i] which equals t[0:j],就是s[0:i]与t[0:j]带入函数所得值,初值都设为 ...
分类:
其他好文 时间:
2019-10-19 14:38:53
阅读次数:
76
Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array. Example 1: Example 2: Note:Your ...
分类:
其他好文 时间:
2019-10-19 09:33:02
阅读次数:
63