练习6
Abstract: MySQL
中information_schema
库的使用
1 | SELECT schema_name FROM information_schema.schemata; |
OUT
显示出所有库名。
1 | SELECT table_name FROM information_schema.tables WHERE table_schema='mynews'; |
OUT
显示出mynews
库中所有表名。
1 | SELECT table_name FROM information_schema.tables WHERE table_schema='test'; |
OUT
找到目标,发现test
库中有两张表content
和users
。
1 | SELECT column_name FROM information_schema.columns WHERE table_name='users'; |
显示出users
表中的字段。
1 | SELECT username, passwd FROM test.users; |
OUT
1 | SELECT column_name FROM information_schema.columns WHERE table_name='content'; |
显示出content
表中的字段。
OUT