MySQL
User 'leopompevcmvc' has exceeded the 'max_questions' resource (current value: 64000)
Query
select
table_name as tableName,
index_name as name,
group_concat(column_name order by seq_in_index separator ',') as columns,
non_unique as multiple,
index_type as type,
index_comment as `comment`
from information_schema.statistics
where
table_schema = 'leopompevcmvc' &&
table_name = 'sellerOptions'
group by index_name