摘要:
错误提示:Key is invalid. You must supply a key in OpenSSH public key format 翻译:密钥无效。必须提供OpenSSH公钥格式的密钥 操作步骤 1.生成公钥 ssh-keygen -t rsa -C "GitHub账号的注册邮箱" 2. 阅读全文
摘要:
```
列名不确定的话,可以选择用like来匹配
- mysql
select table_name,column_name from information_schema.columns where column_name = 'YYY' - db2
select tabname,colname from syscat.columns where tabschema='XXX' and co... 阅读全文
摘要:
1. bigdecimal类型四则运算: BigDecimal s = new Bigdecimal(5); BigDecimal x = new Bigdecimal(15); 依次为最基础的加减乘除: s.add(x); s.substract(x); s.multiply(x); s.divi 阅读全文
摘要:
换了份工作,开始接触Mybatis,开一篇文章记录一下自己遇到的坑 2018 06 20 今天遇到了一个问题,编好的sql语句在数据库可以执行但是写到程序里边就GG,什么问题呢?一直纠结在程序哪里写错了,找的快要死了!!! select t. from table_B where t.usr_id 阅读全文