码迷,mamicode.com
首页 >  
搜索关键字:msyql information_schema    ( 943个结果
mysql 清理command为sleep的连接进程
批量删除 sleep 进程状态的连接数解决方法。 直接在MySQL命令控制台操作: mysql> show processlist; mysql> SELECT concat('KILL ',id,';') FROM information_schema.processlist WHERE user ...
分类:数据库   时间:2021-05-24 16:34:09    阅读次数:0
MySQL 批量删除表
select concat('drop table ',table_name,';') from information_schema.tables where table_schema='employees' and table_name rlike '^d.*$' into outfile 'd ...
分类:数据库   时间:2021-05-24 08:59:21    阅读次数:0
MYSQL 5.7 报错
1:[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'information_schema.PROFILING.SEQ' which i ...
分类:数据库   时间:2021-05-24 02:27:35    阅读次数:0
SQL注入常用爆库语句
SQL注入的时候,找到了注入点,但是老是搞不清怎么爆库,最后还是得看大佬的WP 最后,终于下定决心自己整理一下爆库的常用语句和思路,如果哪里写的不对麻烦在评论区指出:-D 首先常用到的是这个数据库 information_schema 里面有许多表,记载了整个mysql里的各种信息,一般用得到的表为 ...
分类:数据库   时间:2021-04-26 13:01:52    阅读次数:0
SQL语句-判断数据库中是否有这张表
方法1 select count(1) from sys.objects where name = 'student' 方法2 SELECT table_name FROM information_schema.TABLES WHERE table_name ='student' 程序员阿飞 202 ...
分类:数据库   时间:2021-04-22 16:12:38    阅读次数:0
应用-找出谁持有行锁
该案例中涉及performance_schema.data_locks表是MySQL8.0中新增的,8.0之前的版本不支持,如果一个事物长时间未提交,我们虽然可以从information_schema.innodb_trx、performance_schema.events_transactions ...
分类:其他好文   时间:2021-04-13 12:13:46    阅读次数:0
performance_schema初相识
监控MySQL Server运行时资源消耗、资源等待,information_schema关注Server运行的元数据信息,performance_schema通过事件来实现监控,事件可以是函数调用、操作系统等待、或者sql语句的解析排序等阶段 其他特点: performance_schema不会随 ...
分类:其他好文   时间:2021-04-13 11:59:30    阅读次数:0
sql注入
sql报错注入 1.报错函数 (1).floor()报错 语句: ?id=1' union select 1,count(),concat(payload,floor(rand(0)2))x from information_schema.columns group by x --+ (2).upd ...
分类:数据库   时间:2021-04-08 13:32:03    阅读次数:0
sqli-labs系列——第二关
less2 and 1=1有回显,and 1=2无回显,为数值型注入 order by 4–+报错,有3行 查询数据库名 ?id=0' union select 1,(select group_concat(schema_name) from information_schema.schemata) ...
分类:数据库   时间:2021-03-16 13:40:45    阅读次数:0
mysql - 查看表结构命令
-- 查看表结构desc 表名; -- 查看表中字段的结构信息select table_name,column_name,column_comment from information_schema.columns where table_schema ='表所在的库' and table_name ...
分类:数据库   时间:2021-03-10 12:59:11    阅读次数:0
943条   1 2 3 4 ... 95 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!