继续潜水

导航

 
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页

2018年2月5日

摘要: LOWER 函数定义: string lower(string a) string lcase(string a) 功能说明: 将字符串中的⼤写字⺟转成⼩写字⺟ 若参数为 NULL,返回 NULL 。 示例: lower('fOoBaR') = 'foobar UPPER 函数定义: string upper(string a) string ucase(string a) 功能说明: 将... 阅读全文
posted @ 2018-02-05 18:46 继续潜水 阅读(220) 评论(0) 推荐(0) 编辑
 
摘要: 今天无意间发现mysql的coalesce, coalesce()解释:返回参数中的第一个非空表达式(从左向右依次类推); 使用示例:a,b,c三个变量。 阅读全文
posted @ 2018-02-05 15:56 继续潜水 阅读(256) 评论(0) 推荐(0) 编辑
 

2018年1月30日

摘要: 来自: https://www.2cto.com/database/201701/588135.html 64位WIN7+oracle11g+plsql安装 1、下载Oracle 11g R2 for Windows的版本 下载地址:https://www.oracle.com/technetwor 阅读全文
posted @ 2018-01-30 10:58 继续潜水 阅读(1238) 评论(0) 推荐(0) 编辑
 

2018年1月29日

摘要: 来自:http://tianya23.blog.51cto.com/1081650/295940 1、Eclipse中出现无法找到Maven包 症状:出现org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER, 且出现无法找到Maven的依赖的问题 解决方案 阅读全文
posted @ 2018-01-29 14:30 继续潜水 阅读(733) 评论(0) 推荐(0) 编辑
 

2018年1月26日

摘要: 大致是完成了,但是在线程回调的时候还是不能把原有输出回调回来,如果有好的办法,请留言!!!谢谢 阅读全文
posted @ 2018-01-26 13:34 继续潜水 阅读(276) 评论(0) 推荐(0) 编辑
 
摘要: /** * 输入一个Long数组,按要求输出一个等长的Long数组 * 输出数组的元素值等于,输入数组除相同下标外其他元素的积 * 如:输入[1, 2, 3, 4], 输出[24, 12, 8, 6] * 输出数组:output[0] = input[1] * input[2] * input[3],即 24 = 2 * 3 * 4 * output[1] = inpu... 阅读全文
posted @ 2018-01-26 13:30 继续潜水 阅读(513) 评论(1) 推荐(0) 编辑
 
摘要: import java.util.Arrays; public class sk1 { public static void main(String[] args){ int [][] two = {{1,2,3},{4,10},{2,5,8}}; int[] result = merge(two); for(int i... 阅读全文
posted @ 2018-01-26 13:29 继续潜水 阅读(189) 评论(0) 推荐(0) 编辑
 
摘要: 解释: SELECT case -------------如果 when sex='1' then '男' -------------sex='1',则返回值'男' when sex='2' then '女' -------------sex='2',则返回值'女' else 0 ... 阅读全文
posted @ 2018-01-26 10:20 继续潜水 阅读(414) 评论(0) 推荐(0) 编辑
 

2018年1月24日

摘要: 转自:http://www.cnblogs.com/chay1227/archive/2013/03/17/2964020.html 转自:http://blog.csdn.net/allen879/article/details/40461227 转自:http://blog.itpub.net/ 阅读全文
posted @ 2018-01-24 11:55 继续潜水 阅读(919) 评论(0) 推荐(0) 编辑
 

2018年1月17日

摘要: 数据源 : https://pan.baidu.com/s/1eR593Uy 密码: yqjh python环境 python3 阅读全文
posted @ 2018-01-17 11:05 继续潜水 阅读(19713) 评论(1) 推荐(1) 编辑
 
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页