1.1 在moba工具中完成:要求输出前表dvwa.users的所有信息和后表mysql.user的user,password两个字段的信息。
select * from dvwa.users union select user,password,1,2,3,4 from mysql.user;
information_schema内容
关键的数据库:information_schema,保存了系统中所有库、所有表、字段等信息的源数据,即数据库字典。
2.5 显示information_schema所有表格 (先 进入 information_schema 库)
![]()
查看schemata表格的所有信息,该表格内存储了所有数据库的库名
select * from information_schema.schemata;
查看schemata表格的库名信息
select schema_name from information_schema.schemata;
查看tables表格的所有信息,该表格内存储了所有数据库中的所有表格
select schema_name from information_schema.schemata;
按行输出
select schema_name from information_schema.schemata\G;
利用group by 和字段拼接group_concat()方式将同个数据库下所有表格显示在同一行内
select table_schema,group_concat(table_name) from information_schema.tables group by table_schema\G;
Comments NOTHING