MySQL-04:集合运算
文章目录 MySQL 04:集合运算 MySQL04 1 表的加减法 2 表的加法 UNION UNION 4 UNION与OR谓词 UNIONOR 13 包含重复行的集合运算 UNION ALL UNION ALL 34 隐式数据类型转换 37 集合交运算INTERSECT——MySQL不支持 ...
2022-07-22 11:17【HelloNettt】
阅读更多MySQL-01:数据库与SQL基本概念
文章目录 DBMS的概念和分类 DBMS 1 DBMS常见系统结构 DBMS 17 SQL基础 SQL 21 标准SQL语言 SQL 25 DBMS的概念和分类 DBMS 即Database Management System,是用来管理数据库的计算机系统。 根据数据的保存格式,有 5大分类 : ...
2022-07-22 11:17【HelloNettt】
阅读更多Daily Leetcode-11 哈希表(散列表)
哈希表(散列表) 定义 :也叫散列表,根据关键字和值(Key Value)直接进行访问的数据结构。哈希表用的就是数组支持按照下标随机访问的时候,时间复杂度是 O 1 的特性。我们通过哈希函数把元素的键值映射为下标,然后将数据存储在数组中对应下标的位置。当我们按照键值查询元素时,我们用同样的哈希函数...
2022-07-22 11:17【HelloNettt】
阅读更多Getting started with web programming 1.4 PHP connecting to database PDO
PHP The premise of interacting with the database is to start from the front js Get the data , After getting the data , Then interact with the database...
2022-07-22 21:44【A chicken with multiple senses】
阅读更多Getting started with web programming 3.1 selection box select
Select Control implements a drop-down selection effect , As shown in the figure below https://img blog.csdnimg.cn/20200711223445156.png?x oss process...
2022-07-22 21:44【A chicken with multiple senses】
阅读更多Getting started with web programming 2.2 reading parameters in Excel and XML
1 Read Excel Parameters in Need to import external files , from github find xlsx.core.min.js , Download and import And then in HTML Set uploa...
2022-07-22 21:44【A chicken with multiple senses】
阅读更多Connect: connection rejected problem encountered when using go golang configuration
The situation encountered is as follows : dial tcp 108.177.125.141:443: connect: connection refused https://img blog.csdnimg.cn/20210124095211808.png...
2022-07-22 21:44【A chicken with multiple senses】
阅读更多Getting started with web programming 2.3 solving the fakepath problem to obtain the real address of local files
When the browser needs to read local data , Such as No 2.2 Reading mentioned in Chapter xml file , At this point, the browser needs to know the detai...
2022-07-22 21:45【A chicken with multiple senses】
阅读更多Acwing puzzling switch
List of articles Topic details 5 Solution code 9 Topic details https://img blog.csdnimg.cn/c599d92e12da4235b91b93caac668d29.png?x oss process...
2022-07-22 21:45【ai_ moe】
阅读更多Blue Bridge Cup - provincial tournament - with points
List of articles Topic details 6 Solution code 10 Topic details https://img blog.csdnimg.cn/e7e67b6da77b4b6d9a527acff37bb1e6.png?x oss proces...
2022-07-22 21:45【ai_ moe】
阅读更多MySQL-03:视图、子查询和函数
文章目录 MySQL 03:视图、子查询和函数 MySQL03 1 视图 2 视图的定义 4 视图与表的区别 6 视图的优点 8 视图的创建 13 视图结构的修改 26 视图内容的更新 31 更新视图 42 视图的删除 47 子查询 53 子查询的定义 54 子查询的和视图的关系 56 嵌套子查询...
2022-07-22 11:17【HelloNettt】
阅读更多MySQL-02:SQL基础查询与排序
文章目录 SELECT语句基础 SELECT 1 算术运算符和比较运算符 21 逻辑运算符 41 对表进行聚合查询 57 对表进行分组 88 为聚合结果指定条件 107 对查询结果进行排序 123 SELECT语句基础 1. 从表中选取数据 SELECT 子句中列举了希望从表中查询出的列的名称,而...
2022-07-22 11:17【HelloNettt】
阅读更多macOS上MySQL安装与使用
下载 MySQL官网上 社区版软件下载地址 根据自己的电脑系统和电脑型号选择对应的软件版本进行下载。我这里是2020年intel版macbook pro,选择 macOS系统 x86型号MySQL 进行下载。 https://img blog.csdnimg.cn/9265f91052c842...
2022-07-22 11:17【HelloNettt】
阅读更多Daily Leetcode-11 分治
分治 1. 核心思想 :分而治之 1. 定义 :将原问题划分成 n 个规模较小,并且结构与原问题相似的子问题,递归地解决这些子问题,然后再合并其结果,就得到原问题的解。 1. 分治算法一般都比较适合用 递归来实现 。分治算法的递归实现中,每一层递归都会涉及这样三个操作: 分解:将原问题分解成一系列...
2022-07-22 11:17【HelloNettt】
阅读更多Daily Leetcode-10 动态规划
动态规划 1. 区间调度问题 1.1. 无权区间调度问题 互相兼容 :如果两个人物区间不重叠,两个任务相互兼容。 目标 :找到 最多的相互兼容 的任务集合。 https://img blog.csdnimg.cn/2e4fdaac90aa4297b4fdd9bb5686e7ff.png?x oss...
2022-07-22 11:17【HelloNettt】
阅读更多Daily Leetcode-8 搜索
https://img blog.csdnimg.cn/6662d1e931f348d29bec211d2ce1e03f.png?x oss process=image/watermark,type d3F5LXplbmhlaQ,shadow 50,text Q1NETiBASGVsbG9OZXR...
2022-07-22 11:17【HelloNettt】
阅读更多Daily Leetcode-7 双指针
常见的双指针方式 同速双指针 链表上2个指针,一个先出发,另一个后出发,两者速度相同。 应用: 1. 求链表的逆 1. 求链表倒数第k个元素 快慢双指针 链表中两个指针从同一个节点出发,其中一个前进速度比另一个快(一般2:1)。 应用: 1. 计算链表的中点 1. 判断链表是否有环 1. 求链表中...
2022-07-22 11:17【HelloNettt】
阅读更多Daily Leetcode-5 树
数据结构 单链表 树 数据域/ 1+指针域/ 1 数据域/ 1+指针域/ n 数据结构 图 树 顶点集+边 无环连通图 树的定义与相关概念 定义 树是N个节点的有限集合。(N =0) 树是一种非线性结构,但是利用合适的方法,它也可以顺序表示。 https://img blog.csdnimg.cn/...
2022-07-22 11:17【HelloNettt】
阅读更多Daily Leetcode-2链表
定义: 链表是一种物理存储单元上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的。链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成。每个结点包括两个部分:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域。 链表使用的三种策略 先进...
2022-07-22 11:17【HelloNettt】
阅读更多Daily Leetcode-1 数组
数组(Array)是一种线性表数据结构。它用一组连续的内存空间,来存储一组具有相同类型的数据。 Java中创建和使用数组: 1. Java ArrayList 无法存储基本类型,比如 int、long,需要封装为 Integer、Long 类,而 Autoboxing、Unboxing 则有一定的性...
2022-07-22 11:17【HelloNettt】
阅读更多
边栏推荐
- 深度学习资料整理
- 4.文本编辑器
- 【文献阅读与想法笔记13】Pre-Trained Image Processing Transformer
- Chain stack implementation (C language)
- Getting started with CSDN markdown editor
- Leetcode0002——Add Two Numbers——Linked List
- 记一次win10安装cupy的失败经历(附 cupy与numpy对比)
- 编译gdb7.11.1报错解决
- Pure function and higher order function
- The force deduction method summarizes the k-diff number pairs in the 532 array
猜你喜欢
Navigator 2.0 Provides a series of new interfaces , You can make the routing state part of the application state , Newly added API as follows : Pag...
上一篇: ' ' 我们都知道java代码是逐句执行的,看以下代码: public static void test { int val = 1; //code1 boolean bool = true; //code2 } 上面代码,code1在code2之前,但是J...
Latex stay VSCODE Error reported by compile in Recipe terminated with error. Retry building the project. 1 Wrong presentation : Recipe terminated w...
This article records , How to use adb Install the package of the application ;activity Understanding of composition . 1. Package of application A ...
MariaDB The purpose of the audit plug-in is to record the activity of the server . For each client session , It records who connects to the server ( U...
The Fourier transform Only the frequency components of a signal can be obtained , But we don't know when the ingredients appear .“ For nonstationa...
One 、 common IO Model : according to 《Unix Network programming 》 Division ,IO The model can be divided into : Blocking IO、 Non blocking IO、IO Reuse...
https://img blog.csdnimg.cn/2bdd384f341544afb7fb126e0ca12ee8.png (点击报名) ' (点击报名)' “xx 侦探,技术高超,轻松获取对方位置或通讯内容。” 关注【融云全球互联网通信云】了解更多 你或许也在网上遇到过这类所谓“私家...
Enregistrement de cet article,Comment passeradb Paquet pour l'installation de l'application ;activity Compréhension de la composition . 1. Le paquet ...
这是一道关于单向链表的题目,考察的也就是单向链表的构建和遍历。题目如下: https://img blog.csdnimg.cn/20210329203721900.png?x oss process=image/watermark,type ZmFuZ3poZW5naGVpdGk,shadow 1...