0% found this document useful (0 votes)
25 views1 page

Big Data

The document describes creating a flights_data table with fields for flight details like year, month, carrier, flight number, departure and arrival times, delays, origin and destination airports.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views1 page

Big Data

The document describes creating a flights_data table with fields for flight details like year, month, carrier, flight number, departure and arrival times, delays, origin and destination airports.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

create table flights_data( `Year` int, `Month` int, `DayofMonth` int,

`DayOfWeek` int, `DepTime` int, `CRSDepTime` int, `ArrTime` int,


`CRSArrTime` int, `UniqueCarrier` string, `FlightNum` string,
`TailNum` string, `ActualElapsedTime` int, `CRSElapsedTime` int,
`AirTime` int, `ArrDelay` int, `DepDelay` int, `Origin` string,
`Dest` string, `Distance` bigint, `TaxiIn` int, `TaxiOut` int,
`Cancelled` int, `CancellationCode` string, `Diverted` int,
`CarrierDelay` string, `WeatherDelay` string, `NASDelay` string,
`SecurityDelay` string, `LateAircraftDelay` string)
row format delimited fields terminated by ',';

You might also like