码迷,mamicode.com
首页 >  
搜索关键字:maximum value    ( 41834个结果
自写一个生成ID的工具类
各位看官可以关注博主个人博客,了解更多信息。 作者:Surpasser 链接地址:https://www.surpass.org.cn 平时项目中只要涉及表,那么一定能接触到众多各式各样的ID编号,博主整理一些常用的ID格式,整合一个ID生成工具类,供大家参考,如果有什么不足指出,烦请留言批评指正, ...
分类:其他好文   时间:2021-06-18 18:55:11    阅读次数:0
oracle函数
1、NVL(expr1,expr2[,expr3]) 1.1、NVL(expr1,expr2),替换NULL值,如果expr1为NULL值,则返回expr2的值,否则返回expr1的值。 该函数要求两个参数类型一致至少相互之间可以进行隐式的转换。 1.2、NVL(expr1,expr2,expr3) ...
分类:数据库   时间:2021-06-18 18:51:23    阅读次数:0
744. Find Smallest Letter Greater Than Target
Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if i ...
分类:其他好文   时间:2021-06-17 17:13:05    阅读次数:0
05-SpringBoot容器与底层注解-2
1.2 注解@Import 该注解可以给容器导入很多的组件,有一个value属性,是Class的数组,所以可以 一下导入多个组件,该注解可以添加在组件类上面。具体使用如下,在MyConfig配置类上面添加该注解 package com.studymyself.config; import ch.qo ...
分类:编程语言   时间:2021-06-17 17:12:18    阅读次数:0
MySQL进行 批量插入,批量删除,批量更新,批量查询
1、批量插入 ServiceImpl层 List<Person> addPeople = new ArrayList<>(); //addPeople存放多个Person对象 personMapper.insetPeopleReturnIds(addPeople); Dao层接口(这里的注解para ...
分类:数据库   时间:2021-06-17 17:02:57    阅读次数:0
pgsql:插入数据,存在就更新,不存在就插入
插入数据,存在就更新,不存在就插入: insert into tablename (key1,key2,key3) values ('xxx','xxx','xxx') on conflict(key1) do update set key2 = 'yyy',key3 = 'yyy'; 修改表中的字 ...
分类:数据库   时间:2021-06-17 17:01:10    阅读次数:0
NXOPEN 选择材料库对实体进行缩放比例
VS2015 NX12 //关键代码 //用户代码NXString YN_Shrinkage::doubleToNXString(double value)//double转换NXString{ stringstream tmpValue1; tmpValue1 << setprecision(16 ...
分类:其他好文   时间:2021-06-17 16:35:34    阅读次数:0
php BCmath 封装类
<?php /** * BCmath 封装类 * Calc::init(10)->add(1,2,3)->sub(1,2)->mul(4, 5)->value(2); // (10+1+2+3-1-2)*4*5 最后 get 保留 2位小数 * Calc::add(10, 2)->div(2)->v ...
分类:Web程序   时间:2021-06-16 18:18:02    阅读次数:0
合并百度影音的离线数据
四种格式的解析: filelist slicelist download.cfg third_party_download.cfg 还是2个文件。替换之前版本即可。 初步测试正常,但时间轴不对。 代码如下: # -*- coding: UTF-8 -*- import os import io im ...
分类:其他好文   时间:2021-06-16 17:41:38    阅读次数:0
爬虫-BeautifulSoup4
之前我们是用lxml来提取数据,今天我们来学习一下bs4 在学习之前呢我们需要先来安装一下包 pip install bs4 我们用到的例子还是上节课的text内容 text = \ """ <ul class="ullist" padding="1" spacing="1"> <li> <div ...
分类:其他好文   时间:2021-06-16 17:32:19    阅读次数:0
41834条   上一页 1 ... 7 8 9 10 11 ... 4184 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!