第一个Mybatis程序 一、创建数据库、数据表 sql语句如下: create database mybatis; use mybatis; create table user( id int primary key auto_increment , name varchar(50) not nu ...
分类:
其他好文 时间:
2021-02-18 13:32:04
阅读次数:
0
假设不小心写错了sql的条件,写成了 `name` = "aa" = "bb",总结sql的语义转化如下: update 语句的set条件中update table set `name` = "aa" = "bb";==>:update table set `name` = ("aa" = "bb" ...
分类:
数据库 时间:
2021-02-18 13:09:04
阅读次数:
0
| # Markdown学习 | | | | ## 标题 | | | | ### 三级标题 | | | | #### 四级标题 | | | | | | | | ## 字体 | | | | hello,world! | | | | hello,world! | | | | hello,world! | ...
分类:
其他好文 时间:
2021-02-17 15:10:25
阅读次数:
0
前 言 目前公司一些工具会远程调用一些API,这些API调用有两个比较显著特点。 1、消耗时间比较长,无论是报表调用的API,还是 backend ws API 单次调用平均达到20 s 左右。 2、返回来的数据有时也会比较大,我见过单次调用返回的数据有可能有3MB 左右。 基于上述特点,很显然有优 ...
Unsafe Rust So far, you can see that Rust has a strict memory safety guarantee at compile time. However, sometimes this safety guarantee can be annoyi ...
分类:
其他好文 时间:
2021-02-17 14:12:34
阅读次数:
0
删除emp_no重复的记录,只保留最小的id对应的记录。CREATE TABLE IF NOT EXISTS titles_test (id int(11) not null primary key,emp_no int(11) NOT NULL,title varchar(50) NOT NULL ...
分类:
数据库 时间:
2021-02-17 14:01:39
阅读次数:
0
neodash 方便构建基于ne4j dashboard 的工具 包含的特性 实时图表直支持(table,图,bar,line。。。) 支持neo4j 数据类型 自定义配置 保存以及加载为json 格式 参考效果 参考资料 https://nielsdejong.nl/neo4j%20project ...
分类:
其他好文 时间:
2021-02-16 11:55:48
阅读次数:
0
在末尾添加字段1 alter table <表名> add <新字段名> <数据类型> [约束条件]; 在开头添加字段 2 alter table <表名> add <新字段名> <数据类型> [约束条件] first; 在中间位置添加字段3 alter table <表名> add <新字段名> ...
分类:
数据库 时间:
2021-02-16 11:51:29
阅读次数:
0
一、导入表结构 USE `qskj_03`; /*Table structure for table `test` */ DROP TABLE IF EXISTS `test`; CREATE TABLE `test` ( `id` int(10) NOT NULL AUTO_INCREMENT C ...
分类:
数据库 时间:
2021-02-15 12:33:14
阅读次数:
0
KMP 算法(Knuth-Morris-Pratt 算法)是一个著名的字符串匹配算法。 对于字符串匹配,最简单的做法是暴力法双层循环依次对比。 int search(String pat, String txt) { int M = pat.length; int N = txt.length; f ...
分类:
编程语言 时间:
2021-02-15 12:27:03
阅读次数:
0