1. Units(单位) 配置大小单位,开头定义了一些基本的度量单位,只支持bytes,不支持bit 大小写不敏感 # Note on units: when memory size is needed, it is possible to specify # it in the usual for ...
分类:
其他好文 时间:
2021-06-13 10:22:30
阅读次数:
0
SELECT (case when a.colorder=1 then d.name else null end) 表名, a.colorder 字段序号,a.name 字段名, (case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then ...
分类:
数据库 时间:
2021-06-07 20:27:53
阅读次数:
0
####出现错误 提示信息: router.beforeEach((to, from, next) => { if (!storage.getItem('userInfo')) { console.log('error') next({ path: '/login' }) } else { cons ...
分类:
其他好文 时间:
2021-06-06 19:32:40
阅读次数:
0
Mybatis 1.Mybatis的使用 1.1给项目导入相关依赖 我这里有几个下载好的依赖包提供给大家 点我下载——junit4.13.2 点我下载——maven3.8.1 点我下载——mybatis3.5.7 <!--导入依赖--> <dependencies> <dependency> <gr ...
分类:
其他好文 时间:
2021-06-02 20:46:25
阅读次数:
0
Bad habits : Putting NOLOCK everywhere [See an index of all bad habits / best practices posts] I went through the archive above, and was quite surpris ...
分类:
其他好文 时间:
2021-06-02 19:46:42
阅读次数:
0
由来 最近有使用ws2812实现大规模灯带的需求,所以研究了一下如何驱动一排排的灯带。 目前网上有开源的WS2812驱动,它是用Arduino实现的,这些实现都使用arduino的io口模拟ws2812的通信时序,因此具有固有的耗时的缺点。WS2812的数据手册描述如下。 When the refr ...
分类:
其他好文 时间:
2021-06-02 19:29:22
阅读次数:
0
今天突然看到的Python语法,记录一下。 for-else语法 应用 求100以内的素数和: sum=0 for n in range(2,100): for i in range(2,n): if n%i==0: break else: sum+=n print(sum) 获取字符串中某特定字符 ...
分类:
编程语言 时间:
2021-06-02 17:03:02
阅读次数:
0
Default VPC components When we create a default VPC, we do the following to set it up for you: Create a VPC with a size /16 IPv4 CIDR block (172.31.0. ...
分类:
Web程序 时间:
2021-06-02 15:47:16
阅读次数:
0
5.4 进阶4:常见函数 功能:类似于java中的方法,将一组逻辑语句封装在方法体中,对外暴露方法名称 好处: 隐藏了实现细节 提高了代码的重用性 调用:select 函数名 (实参列表) 特点: 叫什么(函数名) 干什么(函数功能) 分类: 单行函数::如concat、ifnull等 分组函数:做 ...
分类:
其他好文 时间:
2021-06-02 15:17:17
阅读次数:
0
####需求,当符合条件1 修改 A表 或 新增 A表 oracle 写法 语法: merge into 目标表 a using 源表 b on(a.条件字段1=b.条件字段1 and a.条件字段2=b.条件字段2 ……) when matched then update set a.更新字段=b ...
分类:
数据库 时间:
2021-06-02 14:37:34
阅读次数:
0