12 2019 档案

摘要:drop procedure if exists test; create procedure test() begin declare i int; #申明变量 declare count int; #申明变量 set i = 0; #变量赋值 set count=(select count(*) 阅读全文
posted @ 2019-12-16 15:04 IAmSao瑞 阅读(1587) 评论(0) 推荐(0)
摘要:package com.unicom.util;import java.util.regex.Matcher;import java.util.regex.Pattern;/** * @Auth wxr * @Date 2019-12 */public class PasswordVerify { 阅读全文
posted @ 2019-12-16 10:43 IAmSao瑞 阅读(1768) 评论(0) 推荐(0)
摘要:MySql-Mybits 1.更新或插入的时候,mysql不允许直接把操作表子查询作为条件,这时候可以为子查询中的目标表起别名来规避此限定。 2.如果表设置自增主键,在进行复制表数据操作的时候需可能会造成复制到目标表的主键冲突,最安全的办法是在复制之前将主键置空,再进行复制操作。 阅读全文
posted @ 2019-12-10 10:50 IAmSao瑞 阅读(90) 评论(0) 推荐(0)
摘要:mybits架构及原理:https://www.cnblogs.com/chongaizhen/p/11170595.html 大数据理解:https://www.cnblogs.com/yixinjishu/p/12123394.html 阅读全文
posted @ 2019-12-10 09:59 IAmSao瑞 阅读(89) 评论(0) 推荐(0)
摘要:package com.sort;/** * @Auth wxr * @Date 2019 */public class QuickSort { public static void sortNumLeft(int [] source,int from,int to){ if(source.leng 阅读全文
posted @ 2019-12-02 14:05 IAmSao瑞 阅读(691) 评论(0) 推荐(0)