SELECT 
  bots.* 
FROM 
  tmall_ab__eb_bots bots 
WHERE 
  1 
  AND bots.storefront_id = 1 
  AND bots.status = 'A' 
ORDER BY 
  bots.position asc

Query time 0.00795

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.011647987,
    "nested_loop": [
      {
        "read_sorted_file": {
          "filesort": {
            "sort_key": "bots.position",
            "table": {
              "table_name": "bots",
              "access_type": "ALL",
              "loops": 1,
              "rows": 1,
              "cost": 0.0110178,
              "filtered": 100,
              "attached_condition": "bots.storefront_id = 1 and bots.`status` = 'A'"
            }
          }
        }
      }
    ]
  }
}