操作数据库 结构化查询语句分类 名称 解释 命令 DDL(数据库定义语言) 定义和管理数据对象,例如数据库和数据表 create、drop、alter DML(数据操作语言) 用于操作数据库对象中所包含的数据 insert、update、delete DQL(数据查询语言) 用于查询数据库数据 se ...
分类:
数据库 时间:
2021-02-19 13:06:11
阅读次数:
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
一.导入坐标 <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId></dependency><dependency> <groupId>org ...
分类:
编程语言 时间:
2021-02-18 13:02:46
阅读次数:
0
平时我们在做应用开发时,一般情况下都会连接到一个MySQL数据库上去,把MySQL当个黑盒子一样执行各种增删改查的语句。里面的逻辑很多人都不清楚。那现在一个简单的 update users set name = "靓仔" where name = "吴磊" 在执行的时候,究竟会经过哪几步呢? Buf ...
分类:
数据库 时间:
2021-02-17 15:02:51
阅读次数:
0
Spring Security简介 历史 添加parent和web依赖 SpringBootApplication @MapperScan@SpringBootApplication public class SpringSecurityApplication{ public static void ...
分类:
编程语言 时间:
2021-02-17 14:45:56
阅读次数:
0
1、stm32f10x_it.h和对应的.c中分别添加以下内容 extern u16 i; void TIM3_IRQHandler(void); void TIM3_IRQHandler(void) { if(TIM_GetITStatus(TIM3,TIM_IT_Update)!=RESET) ...
分类:
其他好文 时间:
2021-02-17 14:08:01
阅读次数:
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
一个特别好的特性就是security context 可以在playground 中使用了,当然dashboard 代码的自动生成也有了越来越多框架的支持了 参考效果 参考资料 https://github.com/cube-js/cube.js/releases ...
分类:
Web程序 时间:
2021-02-16 12:00:01
阅读次数:
0
centos6 yum install git yum install http://opensource.wandisco.com/centos/6/git/x86_64/wandisco-git-release-6-1.noarch.rpm yum update git centos7 yum ...
分类:
其他好文 时间:
2021-02-15 12:32:55
阅读次数:
0
E. Bombs 题意:给定一个排列,和 n 个地雷,按顺序将排列放入集合,遇到地雷则删去集合最大值,求地雷个数为 i 个时,集合最终的最大值为多少。 分析:首先可以看出答案一定是一个非递增序列,考虑类似二分的操作。对于每个节点 i ,若 i 点之后 >= pi 的数量小于等于后面地雷的数量,那 p ...
分类:
其他好文 时间:
2021-02-15 12:22:02
阅读次数:
0