本文分类:news发布日期:2024/11/16 17:31:54
相关文章
DISTINCT 去重
1. 单字段去重
以表 student_course 和 表 student 链接为例:
SELECT * FROM student_course a INNER JOIN student b ON a.student_idb.id;查询结果如下图: 上图查询结果中,若只需要学生信息,则需要对结果进行去重:…
建站知识
2024/11/16 17:27:06
Python | Leetcode Python题解之第482题秘钥格式化
题目: 题解:
class Solution:def licenseKeyFormatting(self, s: str, k: int) -> str:ans list()cnt 0for i in range(len(s) - 1, -1, -1):if s[i] ! "-":ans.append(s[i].upper())cnt 1if cnt % k 0:ans.append("-")if a…
建站知识
2024/11/12 18:14:03
git通过ssh方式操作提示Permission denied (publickey). 【解决】
问题:
C:\Users\admin>git clone "ssh://xxxx.com:22518/xxxx"
Cloning into xxxx...
xxxxxxxx.com: Permission denied (publickey).
fatal: Could not read from remote repository.Please make sure you have the correct access rights
and the r…
建站知识
2024/11/12 20:16:34
linux debian系统中利用sysv-rc-conf启动服务
1、安装sysv-rc-conf
cd /etc/apt/sources.list.d新建资源文件
sudo vi situation.list追加资源库:
deb http://ports.ubuntu.com/ubuntu-ports/ trusty main universe restricted multiverse安装sysv-rc-conf
sudo apt-get update
sudo apt-get install sysv-rc-c…
建站知识
2024/11/12 11:11:34
实时语音转文字(基于NAudio+Whisper+VOSP+Websocket)
今天花了大半天时间研究一个实时语音转文字的程序,目的还包括能够唤醒服务,并把命令提供给第三方。
由于这方面的材料已经很多,我就只把过程中遇到的和解决方案简单说下。源代码开源在AudioWhisper: 实时语音转文字(基于NAudioWhisperVOSPWe…
建站知识
2024/11/1 17:56:40
scala 高阶函数(2)上
学习目录 一.reduce
reduce的含义 idea实例 二.reduceLeft-reduceRight
reduceLeft-reduceRight的含义
idea实例 练习:求最值
建站知识
2024/11/13 8:50:24