本文分类:news发布日期:2024/12/24 1:31:58
相关文章
mysql学习打卡day24
今日成果:
select * from invoices where invoice_total > all ( select invoice_total from invoices where client_id 3);
select * from invoices where invoice_total > ( select max(invoice_total) from invoices where client_id 3 ); -- 两种方…
建站知识
2024/12/24 0:50:41
使用 git 上传文件时,运行 命令 git pull origin 时未成功,出现报错信息
项目场景:
背景:
使用 git 上传文件时,运行 命令 git pull origin 时未成功,出现报错信息 问题描述
问题:
$ git pull origin print --allow-unrelated-histories
error: Pulling is not possible because you hav…
建站知识
2024/12/22 15:51:30
centos安装inpanel
前置条件
安装python
yum -y install python 安装
cd /usr/local
git clone https://gitee.com/WangZhe168_admin/inpanel.git
cd inpanel
python install.py
安装过程需要设置账户 密码 端口号
我设置的是admin:admin 10050 使用
打开浏览器,输入
http://192.168.168.…
建站知识
2024/12/17 15:07:26
annaconda如何切换当前python环境
annaconda默认的python环境是base: 把各种项目的依赖都安装到base环境中不是一个好的习惯,比如说我们做爬虫项目和做自动化测试项目等所需要的依赖是不一样的,我们可以将为每个项目创建自己的环境,在各自的环境中安装自己的依赖&…
建站知识
2024/12/19 12:25:33
Kubernetes基础(十四)-k8s网络通信
1 k8s网络类型 2 Pod网络
2.1 同一pod内不同容器通信
Pod是Kubernetes中最小的可部署单元,它是一个或多个紧密关联的容器的组合,这些容器共享同一个网络命名空间和存储卷,因此Pod中的所有容器都共享相同的网络命名空间和IP地址——PodIP&a…
建站知识
2024/12/20 3:14:48
datax离线同步oracle表到clickhouse实践1
时间:2024.01
目录1、安装启动 oracle19c 容器 2、rpm包安装clickhouse 3、datax安装 4、datax同步 目标库根据要同步的表,按照clickhouse建表规范建表 编写json文件 编写增量同步shell脚本,加入 crond 定时任务
1、安装启动 oracle19c 容器…
建站知识
2024/12/23 22:17:02
QT QCombox 样式表 比起作用
对QCombox在ui编辑器中进行美化,发现外表美化有效果,但下拉框的高度美化的没效果,查看样式表也没有没问题,样式表中内容如下。
QComboBox#curve_comboBox {min-width: 150px;min-height:40;max-width: 150px;max-height:40;borde…
建站知识
2024/12/23 12:48:12
代码随想录算法训练营第二十九天| 491.递增子序列、46.全排列、47.全排列 II
代码随想录算法训练营第二十九天| 491.递增子序列、46.全排列、47.全排列 II 491.递增子序列46.全排列47.全排列 II 491.递增子序列 题目链接 文章讲解 class Solution {
public:vector<int> path;vector<vector<int>> ans;void backtracking(const vector&l…
建站知识
2024/12/18 4:57:29