mysql简单基本用法

sqli-labs基础:

1.查库:select schema_name from information_schema.schemata;

2.查表:select table_name from information_schema.tables where table_schema='security';

3.查列:select column_name from information_schema.columns where table_name='users';

4.查字段:select username,password froom security.users;

posted @ 2020-06-30 14:33  unnEvelyn  阅读(165)  评论(0)    收藏  举报