创建表: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
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 https://blog.csdn.net/qq_41084324/article/details/87297183 错误明细: Unexpected prob ...
分类:
其他好文 时间:
2021-06-03 18:20:28
阅读次数:
0
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
通过某一个值排序输出 if (json.Entity[0].Attributes.find(f => f.Key == "ssss_confirmed_by") != undefined) { SDK.CrmRest.retrieveMultipleRecords("SystemUser", "?$ ...
分类:
编程语言 时间:
2021-06-03 17:59:51
阅读次数:
0
Linux命令千千万,总有几个特别的好用。 遇到一个就增加一个。 理解Linux的设计哲学:一个程序只干很少的一部分事情。 今天先来学习第一个。 Linux批量删除文件 find ./ -name *.md | xargs rm -rf 批量删除带空格的文件 find ./ -name *.md - ...
分类:
系统相关 时间:
2021-06-02 20:56:09
阅读次数:
0
HashMap 是一个散列表,它存储的内容是键值对(key-value)映射。 HashMap 实现了 Map 接口,根据键的 HashCode 值存储数据,具有很快的访问速度,最多允许一条记录的键为 null,不支持线程同步。 HashMap 是无序的,即不会记录插入的顺序。 HashMap 继承 ...
分类:
编程语言 时间:
2021-06-02 20:54:38
阅读次数:
0
1. 创建索引 1.1 使用Alter创建索引 1 添加主键索引 特点:数据列不允许重复,不能为null,一张表只能有一个主键;Mysql主动将该字段进行排序 ALTER TABLE 表名 ADD Primary key (col); 添加唯一索引 特点:索引列是唯一的,可以null;Mysql主动 ...
分类:
数据库 时间:
2021-06-02 20:33:22
阅读次数:
0
import com.alibaba.fastjson.support.spring.GenericFastJsonRedisSerializer; import org.springframework.cache.CacheManager; import org.springframework.c ...
分类:
其他好文 时间:
2021-06-02 20:05:07
阅读次数:
0
数据查询语言DQL基本结构是由SELECT子句,FROM子句,WHERE子句组成的查询块: SELECT <字段> FROM <表名> WHERE <查询条件> -- 创建数据库 create database if not exists stu; -- 使用数据库 use stu; -- 创建一个 ...
分类:
数据库 时间:
2021-06-02 19:57:06
阅读次数:
0