https://www.mictronics.de/aircraft-database/index.php


sql
SELECT
air.icao_hex,
air.registration,
air.type_code,
air.status,
air.operator,
TYPES.full_name,
TYPES.classification,
TYPES.size_category,
air.created_at
FROM
aircrafts air
JOIN aircraft_types types ON air.type_code = types.type_code
LIMIT 1000
后续有空再补充