摘要: Go 的基本数据类型 阅读全文
posted @ 2021-09-11 09:21 bigroc 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 首先在终端中查看MySQL的依赖项:dpkg --list|grep mysql 卸载: sudo apt-get remove mysql-common 卸载:sudo apt-get autoremove --purge mysql-server-5.7 清除残留数据:dpkg -l|grep 阅读全文
posted @ 2021-08-30 14:52 bigroc 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 获取自然周 js获取自然周 本文作者:bigroc 本文链接:https://www.cnblogs.com/bigroc/p/14888550.html 代码 function getWeeks() { // 当年的年份 let year = new Date().getFullYear(); l 阅读全文
posted @ 2021-06-16 11:03 bigroc 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 原文链接: https://www.cnblogs.com/bigroc/p/14212875.html 一、Stack (栈) 1、数据结构 Stack是栈。它的特性是:先进后出(FILO, First In Last Out) 后进先出(Last in - First out)。java工具包中 阅读全文
posted @ 2020-12-30 18:08 bigroc 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 原文链接: https://www.cnblogs.com/bigroc/p/14208123.html 一、Array 1、创建语法 |语言|语法| | | | |Java C++|int a[100]| |Python|list=[]| |JavaScript|let s = [1,2,3]| 阅读全文
posted @ 2020-12-30 10:29 bigroc 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 原文:https://www.cnblogs.com/bigroc/p/13964091.html 一、数据结构(简单到复杂) 1.Array 数组 2.Stack / Queue 堆 / 队列 3.PriorityQueue (heap) 优先队列 、堆 4.LinkedList (single 阅读全文
posted @ 2020-11-12 15:20 bigroc 阅读(159) 评论(0) 推荐(0) 编辑
摘要: mysql如何查询两个字段数不同的表中数据不一致的记录 一般可用NOT EXISTS(非存在子句)或 LEFT JOIN左(右)连接后所产生空字段值来筛选两表的差集 1、NOT EXISTS not exists在比对字段有可利用的索引时,其运行效率是非常高,但是如果没有索引的情况下运行在大数据表时 阅读全文
posted @ 2020-04-22 09:48 bigroc 阅读(10701) 评论(0) 推荐(2) 编辑
摘要: 根据条件分组 删除重复数据 并且保留rowid最小的一行数据 阅读全文
posted @ 2019-09-23 16:47 bigroc 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 注意:SYS用户下执行。sys登录必须为sysdba身份。查看数据文件存放位置。 select * from dba_data_files; 1、创建表空间 CREATE TABLESPACE tp_lp DATAFILE 'd:\data\tp_lp01.dbf' SIZE 10M AUTOEXT 阅读全文
posted @ 2019-07-05 10:26 bigroc 阅读(1984) 评论(0) 推荐(0) 编辑
摘要: 不知道什么原因会出现* 去这里复制码云Gitee insert into smd_address_code(add_code,address) values('110000','北京市'); insert into smd_address_code(add_code,address) values( 阅读全文
posted @ 2019-06-28 09:57 bigroc 阅读(4287) 评论(1) 推荐(0) 编辑