SELECT 
  COUNT(
    DISTINCT storefronts.storefront_id
  ) 
FROM 
  cscart_storefronts AS storefronts 
WHERE 
  1 = 1

Query time 0.00052

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "50.00"
    },
    "table": {
      "table_name": "storefronts",
      "access_type": "index",
      "possible_keys": [
        "PRIMARY"
      ],
      "key": "PRIMARY",
      "used_key_parts": [
        "storefront_id"
      ],
      "key_length": "4",
      "rows_examined_per_scan": 235,
      "rows_produced_per_join": 235,
      "filtered": "100.00",
      "using_index": true,
      "cost_info": {
        "read_cost": "3.00",
        "eval_cost": "47.00",
        "prefix_cost": "50.00",
        "data_read_per_join": "536K"
      },
      "used_columns": [
        "storefront_id"
      ]
    }
  }
}

Result

COUNT(DISTINCT storefronts.storefront_id)
231