找到约 10000 条结果
  • 技术分享 | 一次有趣的 MySQL 客户端命令用法的探索
    这篇文章简单介绍一下运维中经常用到的“MySQL客户端”的一些小技巧。这些小技巧非专业 DBA 基本不会用到,专业的 DBA 必备。希望我的分享你们也能用到。
    2019-12-17
  • Mysql 索引设计与优化
    数据库索引是一种数据结构,它以额外的写入和存储空间为代价来提高数据库表上数据检索操作的速度。通俗来说,索引类似于书的目录,根据其中记录的页码可以快速找到所需的内容。——维基百科
    2021-03-07
  • 好程序员Java培训分享SQL语言之查询(二)
    外键约束MySQL属于关系型的数据库,表之间可以建立关系,如:学生表和成绩表,在成绩表中添加学生编号引用学生表中的学生编号,这样在成绩表中就不用添加重复的学生信息了,这种关系也叫主外键关系,可以通过设置外键约束实现。可以在创建表时,添加外键约束来保证表和表之间引用完整性,添加外键后:在插入外键表数据前...
    2019-06-05
  • 剑指 Offer 65. 不用加减乘除做加法
    {代码...}
    2021-01-12
  • [LeetCode] 371. Sum of Two Integers
    Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -.
    2018-10-29
  • 分析Iceberg合并任务解决数据冲突
    但在实际生产环境中,数据是一直在变化的,有可能会出现这种情况:在还未完成数据合并任务时,对之前的数据做出了修改,这就导致正在合并的数据与新数据可能会产生冲突。
    2022-06-21
  • 41081 传感器
    41081 Sensing, Actuation and ControlOutline of Lab 1In this lab, you will learn
    2022-03-03
  • Agent based game
    Modern computer games are complex, immersive and engaging entertainment experiences made possible through software that implements complex relationships between and behaviours within the objects and agents we find in these games. Within SIT255 we are investigating the architectural patterns and a...
    2020-03-27
  • CSE 489/589可靠性传输协议
    CSE 489/589 Spring 2021Programming Assignment 2Reliable Transport Protocols
    2022-04-08
  • COMP26120 Lab Exercise 5: The 0/1 Knapsack Problem
    IntroductionIn this section we introduce the ‘0/1 Knapsack’ problem.The 0/1 Knapsack Problem and LogisticsSuppose an airline cargo company has 1 aeroplane which it flies from the UK to the US on a daily basis to transport some cargo. In advance of a flight, it receives bids for deliveries from (m...
    2024-02-16
  • ORACLE 字符串转列
    直接上代码: 把字符串a,b转换成查询列表 {代码...} 结果如下:
    2020-01-17
  • 面试问题 - 只用位操作在ABAP里实现a+b
    用ABAP实现下图的第五种整数相加算法: 实现代码: {代码...} 算法描述参考我的SCN博客 Just for fun – Implement a + b using pure bitwise operation in ABAP
    2018-03-03
  • Python常用技巧汇总
    原地交换两个数 {代码...} 输出: {代码...} 链状比较 {代码...} 输出: {代码...} 三元组操作 {代码...} 输出: {代码...} 列表推导 {代码...} 输出: {代码...} 列表/元组切片 {代码...} 输出: {代码...} 列表中某元素出现的次数 {代码...} 输出: {代码...} 统计列表中元素次数 {代码...} 输出: {代码...} 列表去重 {代码....
    2020-07-03
  • PHP 7 修改了什么呢 -- 2
    <?php// Before PHP 7use comyiibaiClassA;use comyiibaiClassB;use comyiibaiClassC as C;
    2017-12-20
  • MySQL 数据传输参数设置对数据一致性的影响
    作者通过全面系统的测试,揭秘 lower_case_table_names 设置对数据一致性的影响。作者:刘安爱可生测试团队成员,主要负责 DTLE 开源项目相关测试任务,擅长 Python 自动化测试开发。本文来源:原创投稿
    2023-07-06
  • 国密wget的用法指南
    1.wget是什么 {代码...} 2.国密wget是什么 {代码...} 3.国密wget使用(单向国密SSL)3.1 简单执行 {代码...} 3.2 简单访问 {代码...} 注释:1)--gmssl表示启用国密SSL2)--no-check-certificate表示不验证服务端证书3.3 验证证书 {代码...} 注释:1)--ca-certificate=FILE表示加载本地可信证书链2)boc.ca.pem下载见后...
    2022-08-12
  • Computational Finance with C++
    Computational Finance with C++CourseworkHanded out: 17/05/2021Due: 1pm – 7/06/2021Exercise 1.The aim of this exercise is to construct a portfolio optimization solver and performbacktesting to assess the performance the Markowitz model.You are given a file containing returns from 83 of the FTSE 10...
    2021-06-08