码迷,mamicode.com
首页 >  
搜索关键字:null undefined    ( 37763个结果
数据库基础操作
基础操作命令 非空约束:not null 设置默认值:default 唯一约束:unique 主键约束:primary key 主键自增:auto_increment 外键约束:foreign key 查询所有库:show databases;创建数据库:create database 库名 cha ...
分类:数据库   时间:2021-06-04 19:42:48    阅读次数:0
c++ 可变参数的打包到tuple,使用tuple传递参数
直接上代码 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
《从头再来》每日一题.160 相交链表
给你两个单链表的头节点 headA 和 headB ,请你找出并返回两个单链表相交的起始节点。如果两个链表没有交点,返回 null 。 三种方法:1、暴力遍历 2、双指针(建议) 3、哈希表 1、暴力遍历 特判:如果两个链表其中一个为空,则返回空 思想:利用两个指针,A指针指向一条链表的一个节点,B ...
分类:其他好文   时间:2021-06-04 19:32:40    阅读次数:0
@NotEmpty、@NotBlank、@NotNull三种注解的区别
@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
Oracle组函数通过nvl对Null进行忽略
进入scott账号, 先看看emp表的数据: 执行如下语句: select sum(comm),count(*),avg(comm) from emp; 执行结果如下: 原始表中有14条数据,结果看见avg(comm)只对非NULL的数据进行平均操作,那是因为oracle的组函数不会将null的数据 ...
分类:数据库   时间:2021-06-04 19:21:22    阅读次数:0
mysql数据库中常用命令
创建表:create table people( id int primary key auto_increment not null, name varchar(10) not null, age int default 18); 创建学生表: create table students(id i ...
分类:数据库   时间:2021-06-04 18:53:42    阅读次数:0
SQL 向数据库中添加一列
USE [dbo].[MySchool] GO IF COL_LENGTH('Student','Score') IS NULL BEGIN ALTER TABLE Student ADD Score DOUBLE END GO COL_LENGTH判断表中是否含有列,比如此处判断Student表中 ...
分类:数据库   时间:2021-06-03 18:27:49    阅读次数:0
kettle报错:Unexpected problem reading shared objects from XML file:null
kettle报错:Unexpected problem reading shared objects from XML file:null https://blog.csdn.net/qq_41084324/article/details/87297183 错误明细: Unexpected prob ...
分类:其他好文   时间:2021-06-03 18:20:28    阅读次数:0
Java已知图片路径下载图片到本地
public static void main(String[] args) { FileOutputStream fos = null; BufferedInputStream bis = null; HttpURLConnection httpUrl = null; int size = 0; ...
分类:编程语言   时间:2021-06-03 18:04:25    阅读次数:0
React 绑定事件的几种写法bind(this)
1. 我们在 React class Component 绑定事件时,经常会通过 bind(this) 来绑定事件 class Home extends React.Component{ constructor( props ){ super( props ); } handleClick(even ...
分类:其他好文   时间:2021-06-03 18:04:10    阅读次数:0
37763条   上一页 1 ... 12 13 14 15 16 ... 3777 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!