Airline Database
A database of over 5000 airlines
@kaggle.open_flights_airline_database
A database of over 5000 airlines
@kaggle.open_flights_airline_database
As of January 2012, the OpenFlights Airlines Database contains 5888 airlines. Some of the information is public data and some is contributed by users.
The data is ISO 8859-1 (Latin-1) encoded.
Each entry contains the following information:
The special value \N is used for "NULL" to indicate that no value is available. This is from a MySQL database where \N is used for NULL.
Notes: Airlines with null codes/callsigns/countries generally represent user-added airlines. Since the data is intended primarily for current flights, defunct IATA codes are generally not included. For example, "Sabena" is not listed with a SN IATA code, since "SN" is presently used by its successor Brussels Airlines.
This dataset was downloaded from Openflights.org under the Open Database license. This is an excellent resource and there is a lot more on their website, so check them out!
CREATE TABLE airlines (
"airline_id" BIGINT,
"name" VARCHAR,
"alias" VARCHAR,
"iata" VARCHAR,
"icao" VARCHAR,
"callsign" VARCHAR,
"country" VARCHAR,
"active" VARCHAR
);Anyone who has the link will be able to view this.