SELECT CONCAT('DROP TABLE ', table_name,';') FROM information_schema.`TABLES` WHERE table_schema='dykj_jyx'; -- dykj_jyx 为数据库名称 ...
分类:
数据库 时间:
2020-06-25 10:01:24
阅读次数:
42
一、配置文件 1.1 jdbc配置文件 1.2 mybatis配置文件 1.3 spring-mybatis配置文件 1.4 springmvc配置文件 <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="htt ...
分类:
编程语言 时间:
2020-06-24 23:49:43
阅读次数:
66
ERROR 1356 (HY000) ERROR 1305 (42000)
分类:
数据库 时间:
2020-06-24 21:51:10
阅读次数:
115
# 导入验证器 from jsonschema import validate # 编写schema: my_schema = { "$schema": "http://json-schema.org/draft-04/schema#", "title": "TestInfo", "descript ...
分类:
编程语言 时间:
2020-06-24 21:23:43
阅读次数:
93
显示(查询)所有的数据库 MySQL查询: show databases PostgreSQL查询: select * from pg_database 查询当前数据库中所有的表信息 like后可写入模糊匹配的表名称 MySQL查询: SELECT table_name tableName, ENG ...
分类:
数据库 时间:
2020-06-24 16:02:21
阅读次数:
63
pt-online-schema-change 最佳实践 pt的详细步骤 Step 1: Create the new table. Step 2: Alter the new, empty table. This should be very quick, or die if the user s ...
分类:
其他好文 时间:
2020-06-24 14:29:41
阅读次数:
49
1. 引言 什么是Json Schema? 以一个例子来说明 假设有一个web api,接受一个json请求,返回某个用户在某个城市关系最近的若干个好友。一个请求的例子如下: { "city" : "chicago", "number": 20, "user" : { "name":"Alex", ...
分类:
Web程序 时间:
2020-06-24 12:10:05
阅读次数:
53
1.MySQL 和 SQLserver 数据库:查看表结构:select * from information_schema.columns where table_name='表名' 修改字段长度:ALTER TABLE 表名 ALTER COLUMN 字段名 字段类型(字段长度) Oracle ...
分类:
其他好文 时间:
2020-06-23 19:20:34
阅读次数:
198
基于注解形式的aop实现 1.jar 与实现接口方式的一致。 2.配置 将业务类、通知类纳入IOC容器。 开启注解对AOP的支持。 <aop:aspectj-autoproxy></aop:aspectj-autoproxy> 使用@Componet注解需要扫描器。 <context:compone ...
分类:
编程语言 时间:
2020-06-23 15:06:33
阅读次数:
63
1. 首先解决 n+1 问题 (1)Entity 添加 @NamedEntityGraph 1 @Entity 2 @Table(name = "tb_depart_detail", schema = "") 3 @NamedEntityGraph(name = "depart_detail.Gra ...
分类:
编程语言 时间:
2020-06-23 13:14:54
阅读次数:
163