1、 导入hellodb.sql生成数据库 # 导入hellodb_innodb.sql数据库文件,生成hellodb数据库 [root@centos7 ~]#mysql -uroot -p123456 < hellodb_innodb.sql (1) 在students表中,查询年龄大于25岁,且 ...
分类:
其他好文 时间:
2020-07-26 23:23:35
阅读次数:
110
定义一个类 public class IDutils { public static String getid(){ return UUID.randomUUID().toString().replaceAll("-",""); } @Test public void get(){ System.o ...
分类:
其他好文 时间:
2020-07-26 19:39:49
阅读次数:
67
1. lsof命令 功能:列出打开的文件常用选项:-i [i] 监听的网络地址,如果没有指定,默认列出所有。[i]来自[46][protocol][@hostname|hostaddr][:service|port]-U 列出Unix域socket文件-p 指定PID-u 指定用户名或UID所有打开 ...
分类:
系统相关 时间:
2020-07-26 01:46:06
阅读次数:
95
1.查看当前登录的用户信息:输入id,回车2.用户基本信息文件:/etc/passwdroot:x:0:0:root:/root:/bin/bash就是:用户名:x:uid:gid:描述:HOME:shellx:密码占位符,具体内容不在这。uid:用户的身份证号。gid:GROUP,组号。shell:命令解释器3.用户密码信息文件:/etc/shadow比如:root:$1$MYG2N:15636
分类:
系统相关 时间:
2020-07-26 00:37:15
阅读次数:
87
mysql时间转换和事务 涉及的函数 date_format(date, format) 函数,MySQL日期格式化函数date_format() unix_timestamp() 函数 str_to_date(str, format) 函数 from_unixtime(unix_timestamp ...
分类:
数据库 时间:
2020-07-25 23:30:39
阅读次数:
136
动态 SQL 是 MyBatis 的强大特性之一。如果你使用过 JDBC 或其它类似的框架,你应该能理解根据不同条件拼接 SQL 语句有多痛苦,例如拼接时要确保不能忘记添加必要的空格,还要注意去掉列表最后一个列名的逗号。利用动态 SQL,可以彻底摆脱这种痛苦。 如果你之前用过 JSTL 或任何基于类 ...
分类:
数据库 时间:
2020-07-24 21:45:47
阅读次数:
88
1、/etc/passwd cat /etc/passwd UID为0代表root用户 UID为1-499代表系统用户 UID为500-65535代表普通用户 2、/etc/shadow sudo cat /etc/shadow root:$6$VIcDEreSZqi.XfY7$xb3JpBKXL3 ...
分类:
系统相关 时间:
2020-07-23 22:50:34
阅读次数:
94
简介 区别 Nginx、LVS及HAProxy负载均衡软件的优缺点 一、简介 ** 所谓四层就是基于IP+端口的负载均衡;七层就是基于URL等应用层信息的负载均衡;**同理,还有基于MAC地址的二层负载均衡和基于IP地址的三层负载均衡。 换句换说,二层负载均衡会通过一个虚拟MAC地址接收请求,然后再 ...
分类:
其他好文 时间:
2020-07-23 22:38:15
阅读次数:
81
最近总发现用户表一些数据被删了,找不到原因,后面通过创建触发器来排查,当有操作x_yonghu表时,记录下来插入日志表中。 create or replace trigger trg_x_yonghu_log_aft_modify after update OF shouji, zigezhengh ...
分类:
数据库 时间:
2020-07-22 20:05:13
阅读次数:
84
select * from table where id=1 and uid=2 and (status=2 or status=3 or status=4); 以下个人使用案例:多个字段,查询条件 格力 SELECT a.sid, a.spid, a.sname, a.spic, a.sprice ...
分类:
数据库 时间:
2020-07-22 16:02:21
阅读次数:
87