数据库的创建 CREATE DATABASE 数据库名称 表的创建 CREATE TABLE 表名称 ( -- not null 设置非空 列名称1 数据类型 not null, 列名称2 数据类型, ....... --设置主键 constraint PK_Reader_ID primary ke ...
分类:
数据库 时间:
2021-04-29 12:01:35
阅读次数:
0
#### jQuery的四种选择器 jQ选择器与css选择器本质上相差不大,但是在使用容易混淆格式或属性 ##### 1.基础选择器 $('#id名') $('.类名') $('.类名1 .类名2') $('标签名.类名') ##### 2.层级选择器 ###### 1.子代:> children ...
分类:
其他好文 时间:
2021-04-29 11:44:29
阅读次数:
0
在执行一段查询SQL的时候报错,系统提示此错误: 经几遍修改SQL还是报该错,核对SQL语句无误,经查看数据集,匹配id存在非数值记录 1.在查询的where里面加入条件语句,查看异常数据: select * from 表名 where nvl2(translate(字段名,'/1234567890 ...
分类:
数据库 时间:
2021-04-29 11:39:10
阅读次数:
0
var sql = @"update [TABLE] WITH (ROWLOCK) SET 匹配方式 = '{0}' where ID in({1})"; //lissqls 是你要分组的泛型集合 var GroupList = lissqls.GroupBy(x => x.MatchType).S ...
JS里面的事件循环,跟JS的单线程的处理机制息息相关,它把js代码处理成任务里的frame,按照如图的分类,划分进去分轮次的宏任务和微任务队列里面。 宏任务仔细划分的话,包括的就是主调用栈和消息队列,代码优先推入调用栈,遇到定时器,promise.then()等之类的函数会推入消息队列和微任务队列 ...
分类:
Web程序 时间:
2021-04-28 12:14:53
阅读次数:
0
git log 显示从最近到最远的所有提交日志 git reflog 显示每次提交的 commit 的 comit id git reset --hard HEAD^ // 回退到 最后一次提交的版本 git reset --hard 版本id // 回退到 当前id 提交的版本 -> id 可以通 ...
分类:
其他好文 时间:
2021-04-28 12:05:46
阅读次数:
0
<insert id="insertBatchList"> INSERT INTO tag ( `tag_name`, `tag_weight`, ) VALUES <foreach collection ="list" item="tag" separator =","> (#{tag.tagNa ...
分类:
其他好文 时间:
2021-04-28 12:04:54
阅读次数:
0
unique(arr) { const res = new Map(); return arr.filter( (arr) => !res.has(arr.strat_id) && res.set(arr.strat_id, 1) ); }, ...
分类:
编程语言 时间:
2021-04-28 12:04:33
阅读次数:
0
几个cpu more /proc/cpuinfo |grep "physical id"|uniq|wc -l 每个cpu是几核(假设cpu配置相同) more /proc/cpuinfo |grep "physical id"|grep "0"|wc -l 查看内存 free -g otps 地址 ...
分类:
其他好文 时间:
2021-04-28 11:49:32
阅读次数:
0
selenium八大元素定位方式 driver.find_element_by_id(‘id’)#id定位driver.find_element_by_name(‘name’)#name定位driver.find_element_by_class_name(‘class’)#classname定位 ...
分类:
其他好文 时间:
2021-04-28 11:45:12
阅读次数:
0