摘要: 方法一: select n_code from table1(表名) where n_orgid is not null group by n_code,n_orgid having count(n_orgid)>1 方法二 select * from (select count(n_code) a 阅读全文
posted @ 2020-06-28 11:35 qingjiawen 阅读(612) 评论(0) 推荐(0) 编辑
摘要: 在 .gitignore文件 里面添加不想要提交的文件或文件夹 node_modules xxx.log .vscode 提交过的文件已经在git中存在记录,这时候我们可以这样做: git rm --cached logs/xxx.log(所在目录/文件名) 然后更新.gitignore忽略掉目标文 阅读全文
posted @ 2020-06-28 09:22 qingjiawen 阅读(515) 评论(0) 推荐(0) 编辑