找到约 10000 条结果
  • Kernel Compilation Kernel Module System Call Implementation
    The objective of this assignment is to familiarize yourself with the Linux kernel source code. Specifically, you will:
    2024-02-18
  • YashanDB CRYPT_HASH函数
    CRYPT_HASH函数以expr2为hash算法类型,对expr1的数据进行哈希计算,生成相应的摘要,返回一个HEX格式的VARCHAR类型的哈希摘要。
    2025-04-24
  • 使用纯粹的ABAP位操作实现两个整数相加
    Recently I came across this very funny picture and I would like to share with you.
    2020-08-28
  • Mysql exists用法小记
    EXISTS 指定一个子查询,检测行的存在。语法:EXISTS subquery。参数 subquery 是一个受限的 SELECT 语句 (不允许有 COMPUTE 子句和 INTO 关键字)。结果类型为 Boolean,如果子查询包含行,则返回 TRUE。
    2020-12-13
  • 【YashanDB知识库】YashanDB 支持MySQL多表更新语句的解决方法
    MySQL支持多表更新语句,如果迁移到YashanDB,推荐通过兼容性参数来支持。如果兼容性参数支持存在问题的话,也可以按照多表更新的规则进行改写。
    2025-02-12
  • C++ class
    Core concepts of OOP(Object-oriented programming): abstraction, encapsulation, inheritance and polymorphism.
    2018-12-12
  • Docker入门(四)- 搭建redis
    7001:6379 <=> 外部端口:docker容器端口, 本地${pwd}/redis.conf的bind配置项需要注意,如果是127.0.0.1,外部将无法连接docker内的redis
    2017-04-22
  • mysql常用操作
    日常使用mysql数据库时,经常需要创建用户、数据库、表以及授权等相关操作,整理在此供大家查询参考使用: win10 mysql5.7.21免安装版配置 下载mysql-5.7.21-winx64.zip 复制mysql-5.7.21-winx64.zip到D:dev-envirment-setup 解压mysql-5.7.21-winx64.zip至D:dev-envirment-setupmysql-5.7.21-winx64 在D:dev-envirment-set...
    2020-04-27
  • CSCI 4041 Algorithms and Data Structures
    Instructions: This is an individual homework assignment. You may work together to discuss con- cepts, but the solutions must be your own work.  Submit your answers on Canvas, which is linked to Gradescope (be sure to correctly map the page for each problem).  We will not grade Practice Problems, ...
    2025-02-17
  • finebi帆软FCA-数据分析理论试卷
    1、对任意事件A和B,必有 P(AB)=P(A)P(B) 《错误》2、两事件如果满足,P(AB)=P(A)P(B),则称A、B独立 《正确》3、如果随机事件A和B相互独立,则两个事件是互斥的 《错误》4、!=和<>都代表不等于。=和<=>都代表等于 《正确》5、数据分析报告的目录页应该能体现分析思路,越详细越好 《错误》6、RFM模型是用...
    2023-01-30
  • 【YashanDB知识库】outline固化执行计划
    【问题分类】性能优化,功能使用【关键字】outline【问题描述】防止SQL执行计划突变,用outline固化执行计划【问题原因分析】防止SQL执行计划突变,用outline固化执行计划【解决/规避方法】 {代码...} 【影响范围】严重降低SQL执行效率【修复版本】22.2
    2024-06-06
  • Golang 永远阻塞进程的几种不同方式
    A sync.WaitGroup is a way to coordinate multiple goroutines by reporting completion. Since there’s nobody to report completion, it never returns. Wait blocks until the WaitGroup counter is zero.
    2019-11-28
  • 学会这个让你的代码更Pythonic
    Python是一门非常灵活的语言,很多语法是其他语言不具备的,特别是对于从C、Java等语言转向Python的人来说,很容易按照C、Java等语言的写法来写Python,对于初学者来说,如果对Python语言的理解不够透彻,就会写出很冗余的代码来。
    2021-12-23
  • Swift Learning Summary: Subscripts
    A shortcut for accessing the member of a collection, list, or sequence.
    2022-04-24
  • EECS 281问题求解
    EECS 281 – Winter 2021Programming Project 4Drone DeliveryDue Monday, April 19 before midnightOverviewYou’ve decided to start a company to handle on-campus deliveries of items via drone. Not just at UM, you’redeveloping software to sell so that people at other campuses can set up their own drone d...
    2022-05-05
  • mysql脚本subscribe
    select 'set sql_mode=ANSI' as prompt;set sql_mode=ANSI;select 'change database to zxinsag' as prompt;use zxinsag;
    2021-07-03
  • 什么是扎实的基本功?MySQL 基础知识看看你了解多少
    本文首发于公众平台:腐烂的橘子当前很多同学沉迷于“碎片化学习”,问题在于获取到的都是零碎的知识,没有体系化的知识框架,这对于练就扎实的基本功是极其不利的。怎么办?这时要懂得中庸之道“慢即是快”的道理,系统学一遍,查漏补缺,不要觉得有些你知道就学不下去了,要耐得住性子,系统学习。下面就来检验下这些知识...
    2024-06-23