SQL null 值 NULL函数 coalesce 接合,合并 SQL通用数据类型 DB数据类型 character varying 不同 integer DECIMAL(p,s) decimal numeric real stamp 邮票 印 interval 间隔 休息时间 mutiset 多 ...
分类:
其他好文 时间:
2021-06-05 18:23:54
阅读次数:
0
free free(NULL)合法 free(野指针)大概率崩溃,小概率没事,具体要分析源代码 连续两次free,在一些非常有限的情况下,不会崩溃 多次free,在大多数情况下会导致崩溃 手动调用构造和析构函数 比较诡异,c++可以显示调用析构函数,比如A a;a.~A,但是不能显式调用构造函数 并 ...
分类:
其他好文 时间:
2021-06-05 18:19:58
阅读次数:
0
空表示表格没有任何输出,null表示输出为null。 #方法一select sum(num)from( select num from my_numbers group by num having count(num)=1 order by num desc limit 0,1); #方法二sele ...
分类:
其他好文 时间:
2021-06-05 18:19:31
阅读次数:
0
create database zuoye; -- 创建数据库 use zuoye; -- 使用数据库 #创建几个库表 create table Student -- 学生表 ( Sno char(3) NOT NULL Primary key , -- 学号 ,设为主键,不允许空值 Sname c ...
分类:
数据库 时间:
2021-06-05 17:46:33
阅读次数:
0
KeyNotFoundException("Item was not found!"); NotImplementedException("Empty list."); ArgumentOutOfRangeException("index"); ArgumentNullException("elem ...
分类:
其他好文 时间:
2021-06-05 17:39:48
阅读次数:
0
基础操作命令 非空约束:not null 设置默认值:default 唯一约束:unique 主键约束:primary key 主键自增:auto_increment 外键约束:foreign key 查询所有库:show databases;创建数据库:create database 库名 cha ...
分类:
数据库 时间:
2021-06-04 19:42:48
阅读次数:
0
直接上代码 void Add(int a, double b, short c, const char * f) { std::cout << f << a << ", " << b << ", " << c << ";\n"; } void *p = nullptr; template <type ...
分类:
编程语言 时间:
2021-06-04 19:35:50
阅读次数:
0
给你两个单链表的头节点 headA 和 headB ,请你找出并返回两个单链表相交的起始节点。如果两个链表没有交点,返回 null 。 三种方法:1、暴力遍历 2、双指针(建议) 3、哈希表 1、暴力遍历 特判:如果两个链表其中一个为空,则返回空 思想:利用两个指针,A指针指向一条链表的一个节点,B ...
分类:
其他好文 时间:
2021-06-04 19:32:40
阅读次数:
0
@NotEmpty 用在集合类上面加了@NotEmpty的String类、Collection、Map、数组,是不能为null或者长度为0的(String Collection Map的isEmpty()方法)@NotBlank只用于String,不能为null且trim()之后size>0@Not ...
分类:
其他好文 时间:
2021-06-04 19:22:27
阅读次数:
0
进入scott账号, 先看看emp表的数据: 执行如下语句: select sum(comm),count(*),avg(comm) from emp; 执行结果如下: 原始表中有14条数据,结果看见avg(comm)只对非NULL的数据进行平均操作,那是因为oracle的组函数不会将null的数据 ...
分类:
数据库 时间:
2021-06-04 19:21:22
阅读次数:
0