19.08.19 知识点的记录

var regObj=new RegExp(正则表达式);

regObj.test(校验的值);

$.each(json,function(index,item)里面的index代表当前循环到第几个索引,item表示遍历后的当前对象


union 用于合并多个select语句的结果集

union all 包含重复的

select ...from(select ...from table) a where...把子查询的结果集作为一个表进行外部查询

原文地址:https://www.cnblogs.com/0043guan/p/11383918.html