In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
SELECT
region.id,
region.world_id,
min_x,
min_y,
min_z,
max_x,
max_y,
max_z,
version,
mint_version
FROM
minecraft_worldguard.region
INNER JOIN
minecraft_worldguard.region_cuboid
ON region.id = region_cuboid.region_id
AND region.world_id = region_cuboid.world_id
LEFT JOIN
minecraft_srvr.lot_version
ON region.id = lot
WHERE
region.world_id = 10
AND region_cuboid.world_id = 10