创建数据库mysql>SHOWDATABASES;+--------------------+|Database|+--------------------+|information_schema||mysql||performance_schema||sys|+--------------------+4rowsinset(0.35sec)mysql>CREATEDATABASEte
分类:
数据库 时间:
2020-04-14 16:48:09
阅读次数:
76
title: BFS tags: ACMer categories: 搜索 thumbnail: https://gss3.bdstatic.com/84oSdTum2Q5BphGlnYG/timg?wapp&quality=80&size=b150_150&subsize=20480&cut_x= ...
分类:
其他好文 时间:
2020-04-12 16:53:11
阅读次数:
79
元数据库:information——schema其中存储着其他所有数据库的信息 其中的表非常多 schemata:存放所有数据库的名字 tables:用于存放所有数据表的名字 columns:存放所有字段的名字 这些表里面存放的信息非常多,如果用select * from tables; 查询会出现 ...
分类:
数据库 时间:
2020-04-12 08:20:52
阅读次数:
76
SQL注入中information_schema的作用 information_schema数据库是MySQL自带的,MySQL 5以下没有这个数据库,它提供了访问数据库元数据的方式.什么是元数据呢?元数据是关于数据的数据,如数据库名或表名,列的数据类型,或访问权限等.也就是说information ...
分类:
数据库 时间:
2020-04-10 00:21:09
阅读次数:
226
查询索引信息 show index from db.table; select TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME,CARDINALITY from information_schema.STATISTICS isswhere iss.table_name='ta ...
分类:
数据库 时间:
2020-04-09 12:49:15
阅读次数:
81
Concentrated on the listed 3 things PCIe total solutions, especially the cutting-edge technology ... Coding quality, matrurity and efficiency (C,Bash, ...
分类:
其他好文 时间:
2020-04-08 18:47:52
阅读次数:
74
配置Internet Information Services服务,实现文件共享。 打开控制面板,找到程序和功能,启用或关闭Windows功能。 启用IIS服务,系统会自动搜索并安装IIS服务。 浏览器输入localhost测试一下。 配置Internet Information Services服 ...
performance_schema提供监控策略及大量监控项,包括:元数据锁、进度跟踪、事务、内存使用及存储程序等。但是,performance_schema又过于复杂,操作不便,所以5.7新增了 sys schema,基础数据来自于 performance 跟 information_shcema ...
分类:
数据库 时间:
2020-04-06 11:20:14
阅读次数:
99
整理下sql相关知识,查漏补缺(长期更新) 常用语句及知识 information_schema包含了大量有用的信息,例如下图 mysql.user下有所有的用户信息,其中authentication_string为用户密码的hash,如果可以使用可以修改这个值,那么就可以修改任意用户的密码 常用函 ...
分类:
数据库 时间:
2020-04-05 09:46:34
阅读次数:
83
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https: ...
分类:
数据库 时间:
2020-04-05 00:41:07
阅读次数:
104