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;

浙公网安备 33010602011771号