码迷,mamicode.com
首页 >  
搜索关键字:insert or update    ( 28063个结果
Oracle数据库与MySQL的不同之处
select 。。。 for update;排它锁,注意选中某几行 1.在PLSQL DEVELOPER中不会自动提交事务,insert update 后需要手动提交事务 2.oracle 中没有主键自增,主键使用sequence或者sysuuid, ||连接两个字段 3.伪列:列本身不存在,但是却 ...
分类:数据库   时间:2021-04-07 11:46:34    阅读次数:0
mysql时间字段加减
update 20210406 set recordTime=date_add(recordTime,INTERVAL -5 hour) where id>2; update 20210406 set recordTime=date_add(recordTime,INTERVAL -5 minute ...
分类:数据库   时间:2021-04-07 11:35:14    阅读次数:0
Ubuntu server vim复制到系统剪贴板
阿里云Ubuntu Server 20.04 apt-get update -y apt-get upgrade -y apt-get install -y xorg-dev apt-get install -y libgtk2.0-dev apt-get install -y vim vim-sc ...
分类:系统相关   时间:2021-04-06 14:36:20    阅读次数:0
各层命名规约
Service/DAO层方法命名规约 1) 获取单个对象的方法用get做前缀。 2) 获取多个对象的方法用list做前缀,复数结尾,如:listObjects。 3) 获取统计值的方法用count做前缀。 4) 插入的方法用save/insert做前缀。 5) 删除的方法用remove/delete ...
分类:其他好文   时间:2021-04-06 14:35:02    阅读次数:0
Shortcut Keys Configure of Typora
Shortcut Keys Configure Summary You can use shortcut keys to quickly insert or modify styles or do other operations supported by Typora. You can find ...
分类:其他好文   时间:2021-04-06 14:21:02    阅读次数:0
如何为开源项目提交pr
在CNCF:community bridge#1285Reading Material Update And Supplement 这个议题当中,更新扩充好的材料需要同步更新到volcano官网的官方文档上,这篇文章主要来记录如何为开源项目(volcano)提交pr,以达到我们将贡献的开源文档同步更 ...
分类:其他好文   时间:2021-04-06 14:01:47    阅读次数:0
github 的 tag
很多github上的项目都有标签(tag),可以清晰快速的找到每个不同的版本,非常方便以后查找以及使用。 tag 我们可以创建一个tag来指向软件开发中的一个关键时期,比如版本号更新的时候可以建一个“v2.0”、“v3.1”之类的标签,这样在以后回顾的时候会比较方便。tag的使用很简单,主要操作有: ...
分类:其他好文   时间:2021-04-05 12:22:21    阅读次数:0
树状数组
class Sarr { public: Sarr() { memset(Bit, 0, sizeof(Bit)); } int lowbit(int pos) { return pos & (-pos); } void update(int pos, int len) { while (pos < ...
分类:编程语言   时间:2021-04-05 12:05:49    阅读次数:0
index 增加文档时个别内容 报:endOffset must be >= startOffset,
ES 和 IK分词器版本 都是6.8.13 patent_index_2020_10_20/data/CN202020433825.3/_update { "doc" : { "name" : "生物质天然气热裂解生产设备" } } 报错: "type": "illegal_argument_exc ...
分类:其他好文   时间:2021-04-05 11:59:19    阅读次数:0
如何将 xterm 中的内容粘贴到IDE
复制: 鼠标选中就复制了 粘贴: 粘贴到xterm里面 shift+Insert; 粘贴到其他应用 shift + 鼠标滚轮; https://askubuntu.com/questions/237942/how-does-copy-paste-work-with-xterm ...
分类:其他好文   时间:2021-04-02 13:34:34    阅读次数:0
28063条   上一页 1 ... 19 20 21 22 23 ... 2807 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!